	<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  
    <link rel="apple-touch-icon" type="image/png" href="https://marcurselli.com/onepage/MU-images/MU-logo.png" />
    <meta name="apple-mobile-web-app-title" content="MarcUrselli">
	<link rel="shortcut icon" type="image/x-icon" href="onepage/MU-images/favicon.ico">
    <link rel="mask-icon" type="image/x-icon"  href="onepage/MU-images/favicon.ico">

  		<title>Marc Urselli - Producer | Engineer | Sound Designer</title>

	<meta name="Description" content="7-time nominated 3-time Grammy Award-winning engineer, producer, mixer, sound designer and FOH engineer Marc Urselli produces, records and mixes artists from all over the world. He has worked with U2, Foo Fighters, Lou Reed, Nick Cave, Kesha, Børns The Black Crowes, Sting, Frank Sinatra, Joss Stone, Mike Patton, John Zorn, Les Paul, Jack DeJohnette, Jeff Beck, Buddy Guy, Keith Richards, Esperanza Spalding, Luther Vandross, John Patitucci, Laurie Anderson and countless other artists in the genres of rock, pop, metal, jazz, avantgarde/new music/experimental, electronica.">
	<meta name="Keywords" content="engineer, producer, mixer, live sound, audio engineer, sound designer, FOH engineer, Grammy">

	<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
	<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/cosmo/bootstrap.min.css'>
  
<style>
/**
 * CRHA
 * ========================
 * Responsive horizontal accordion for any css library.
 * 
 * Free variables:
 * ---------------
 * - `slides`: the number of `<li>` used,
 * 
 * - `height`: for the accordion,
 * 
 * - `tab-width`: for the not opened slides,
 * 
 * - `accordion-gutter`: for the space between tabs,
 * 
 * - `border`: for the border around tabs/slides,
 * 
 * - `radius`: for the radius of tabs/slides,
 * 
 * - `accordion-back-color`: for a general background color,
 * 
 * - `tab-back-color`: for tab background color,
 * 
 * - `tab-hover-back-color`: for tab background color on hover (not to be used 
 *   with `hover` control class),
 * 
 * - `img-position`: for image positioning on tabs,
 * 
 * - `title-open-back-color`: for opened `.accordion-title` background color,
 * 
 * - `tab-title-font-color`: for the tab title font,
 *
 * - `title-font-color`: for the opened title font,
 *
 * - `body-font-color`: for the body font,
 * 
 * - `body-back-color`: for `.accordion-body` background color,
 * 
 * - `nav-back-color`: for `.accordion-nav a` background color,
 * 
 * - `nav-hover-back-color`: for `.accordion-nav a` background color on hover,
 * 
 * - `slide-back-color`: for opened slide background color.
 * 
 * Control classes: (behavior)
 * ----------------
 * - `.open`: at the root class `.CRHA` expands `<ul>` to the 
 *   whole available horizontal space making slides take equal amount of space 
 *   (justified) when nothing is selected. If not used, the `<ul>` uses only 
 *   `slides`*`tab-width` space so that the slides when nothing is selected are 
 *   stacked to the left taking each equal width of `tab-width`,
 * 
 * - `.open`: at the `<li>` uses all the available space minus the width of the 
 *   other slides; should be combined with `open` at the root class,
 * 
 * - `.scroll`: at the root class `.CRHA` makes selected slide 
 *   to be scrollable otherwise it is clipped and applies also to `.accordion-text` 
 *   making it scrollable even if it's `position: absolute;` when slide is 
 *   opened but with nasty animation scrollbars (use js during animation and hide 
 *   property `overflow`),
 * 
 * - `.h-*`: at the root class `.CRHA` for different accordion 
 *   heights measured on `%` values of screen height, steps of `10%`,
 * 
 * - `.no-open-text`: at the root class `.CRHA` or at `<li>` 
 *   to hide all text under class `.accordion-text` in opened slides,
 * 
 * - `.img-cover`: at the root class `.CRHA` or at `<li>` to 
 *   scale and clip `.accordion-img` images so that they fill the entire visible 
 *   slide,
 * 
 * - `.nav`: at the root class `.CRHA` prints a centered 
 *   navigation bar,
 * 
 * - `.fix-nav-scroll-overlap`: at the root class `.CRHA` 
 *   prints the right navigation arrow with a right space to avoid possible 
 *   vertical scrollbar overlap (avoid it in mobile devices or use js!),
 * 
 * - `.nav-circle`: at the root class `.CRHA` prints a 
 *   centered navigation bar with a round background,
 * 
 * - `.nav-square`: at the root class `.CRHA` prints a 
 *   centered navigation bar with a square background,
 * 
 * - `.nav-top`: at the root class `.CRHA` in combination 
 *   with a `nav*` class puts the navigation bar at the top of the slide,
 * 
 * - `.nav-bottom`: at the root class `.CRHA` in combination 
 *   with a `nav*` class puts the navigation bar at the bottom of the slide.
 * 
 * Control classes: (presentation)
 * ----------------
 * - `.accordion-text`: contains the tab and slide title and the slide main text
 *   with the help classes `accordion-title` and `accordion-body`,
 * 
 * - `.accordion-title`: inside `accordion-text`,
 * 
 * - `.accordion-body`: inside `accordion-text`,
 * 
 * - `.accordion-nav`: navigation arrows,
 * 
 * - `.accordion-nav a.disabled`: disabled navigation arrows,
 * 
 * - `.accordion-img`: responsive images for the accordion.
 * 
 * Example: 
 * --------
 * 2nd slide is opened with no `.accordion-text` shown, accordion has 
 * screen height, opened with mouse hover, all slides have at bottom a navigation 
 * bar with circular arrows, slides are scrollable if content does not fit, a fix
 * exists for right arrow-scrollbar overlap and image in 1st slide covers the 
 * entire visible slide also notice that 1st slide contains all help classes
 * ```
 * <div class="CRHA h-100 hover nav nav-circle nav-bottom scroll fix-nav-scroll-overlap open">
 *    <ul>
 *       <!-- 1st slide -->
 *       <li class="img-cover">
 *          <div>
 *             <div class="accordion-text CRHA">
 *                <div class="centered">
 *                   <h2 class="accordion-title">...</h2>
 *                   <div class="accordion-body">...</div>
 *                </div>
 *             </div>
 *             <div class="accordion-nav">
 *                <a class="disabled" href="#" onclick="return false;">
 *                   <i class="fa fa-angle-left" aria-hidden="true"></i>
 *                </a>
 *                <a href="#" onclick="return false;">
 *                   <i class="fa fa-angle-right" aria-hidden="true"></i>
 *                </a>
 *             </div>
 *             <img class="accordion-img" src="..."></img>
 *          </div>
 *       </li>
 *       <!-- 2nd slide -->
 *       <li class="open no-open-text">
 *          <div>...</div>
 *       </li>
 *    </ul>
 * </div>
 * ```
 */
/* 
 * Basic code
 * ----------
 */
.CRHA {
  width: 100%;
  height: 50vh;                        /* = free var 'height', need this to clip empty space at the bottom! */
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 5px 3px 3px rgba(0,0,0,0.3),5px -3px 3px rgba(0,0,0,0.3);
                                       /* '5px' comes from free var 'accordion-gutter' */
}
.CRHA.h-100 {
   height: 100vh;
}
.CRHA.h-90 {
   height: 90vh;
}
.CRHA.h-80 {
   height: 80vh;
}
.CRHA.h-70 {
   height: 70vh;
}
.CRHA.h-60 {
   height: 60vh;
}
.CRHA.h-50 {
   height: 50vh;
}
.CRHA.h-40 {
   height: 40vh;
}
.CRHA.h-30 {
   height: 30vh;
}
.CRHA.h-20 {
   height: 20vh;
}
.CRHA.h-10 {
   height: 10vh;
}
.CRHA.h-0 {
   height: 0;
}
.CRHA > ul {
   list-style: none;
   width: 1000px;                            /* = 'slides' * 'tab-width' or, leave it fixed! ('.CRHA.open' resets it to 100%) */
   display: table;
   table-layout: fixed;
   margin: 0;
   padding: 0;
   transition: all 500ms ease;            /* need this when we are entering vertically! */
}
.CRHA > ul > li {
   display: table-cell;
   vertical-align: top;
   position: relative;
   /* need this to stop rapid opening of all subsequent slides when entering vertically! */
   overflow: hidden;                      
   -ms-transform: translate(0,0);         /* need this to apply 'position: fixed;' of navigation buttons! */
   -webkit-transform: translate(0,0);
   transform: translate(0,0);
   transition: all 500ms ease;            /* need this when we jump from slide to slide! */
   background-color: #bfbfbf;             /* free var 'accordion-back-color' */
   padding: 0 0 0 5px;                    /* free var 'accordion-gutter' */
}
.CRHA > ul > li > div {
   display: inline-block;                 /* might need this if '.accordion-text' is absolute! */
   width: 100%;                           /* goes with previous! */
   height: 50vh;                          /* = free var 'height' */
   overflow: hidden;
   border: 1px solid #666;             /* = free var 'border' */
   border-radius: 0px;                   /* = free var 'radius' */
   background-color: #000000;                /* free var 'tab-back-color' */
   /* need this if you have absolute positioned child nodes; also need it to 
      activate scrolling on those nodes! Side-effect: animation scrollbars in 
      relation with the 'scroll' class! Do NOT replace with 'translate(0,0)' as 
      the side effect is in navigation buttons that become un-fixed! */
   position: relative;
   background-position: left top;         /* free var 'img-position' for background images */
   background-size: cover;                /* might need this for background images */
   background-repeat: no-repeat;          /* might need this for background images */
}
.CRHA.h-100 > ul > li > div {
   height: 100vh;
}
.CRHA.h-90 > ul > li > div {
   height: 90vh;
}
.CRHA.h-80 > ul > li > div {
   height: 80vh;
}
.CRHA.h-70 > ul > li > div {
   height: 70vh;
}
.CRHA.h-60 > ul > li > div {
   height: 60vh;
}
.CRHA.h-50 > ul > li > div {
   height: 50vh;
}
.CRHA.h-40 > ul > li > div {
   height: 40vh;
}
.CRHA.h-30 > ul > li > div {
   height: 30vh;
}
.CRHA.h-20 > ul > li > div {
   height: 20vh;
}
.CRHA.h-10 > ul > li > div {
   height: 10vh;
}
.CRHA.h-0 > ul > li > div {
   height: 0;
}
.CRHA > ul > li > div > :not([class*="accordion-text"]) {
  display: none;
}
.CRHA:not([class*="hover"]) > ul > li:hover > div {
   background-color: #868686;             /* free var 'tab-hover-back-color' */
}

/* 
 * Hover control class
 * -------------------
 */
 .CRHA.hover > ul:hover,
 .CRHA.hover > ul:focus {
     width: 100%;
 }
 
 .CRHA.hover > ul:hover > li,
 .CRHA.hover > ul:focus > li {
     width: 8%;
 }
 
 .CRHA.hover > ul > li:hover,
 .CRHA.hover > ul > li:focus {
     width: 80%;
 }
 
 .CRHA.hover > ul > li:hover > div,
 .CRHA.hover > ul > li:focus > div {
     background-color: #000000;
     background-position: center;
 }
 
 .CRHA.hover > ul > li:hover > div > :not([class*="accordion-text"]),
 .CRHA.hover > ul > li:focus > div > :not([class*="accordion-text"]) {
     display: block;
 }
 

/* 
 * Open control class
 * ------------------
 */
.CRHA.open > ul {
  width: 100%;
}
.CRHA.open > ul > li {
  width: 8%;                              /* = free var 'tab-width' */
}
.CRHA.open > ul > li.open {
   width: 80%;                            /* = 100 - ('slides' - 1) * 'tab-width' or, leave it fixed! */
}
.CRHA.open > ul > li.open > div {
   background-color: #000000;             /* free var 'slide-back-color' */
   background-position: center;
}
.CRHA.open > ul > li.open > div > :not([class*="accordion-text"]) {
  display: block;
}

/* 
 * Scroll control class
 * --------------------
 * Side-effect: animation scrollbars.
 * Solution: use js to apply inline style on animation start 'overflow: hidden;' 
 * and on animation end remove that style!
 */
.CRHA.hover.scroll > ul > li:hover > div, 
.CRHA.hover > ul > li.scroll:hover > div, 
.CRHA.scroll > ul > li.open > div, 
.CRHA > ul > li.open.scroll > div {
   overflow: auto;
}

/* 
 * Accordion text
 * --------------
 * It contains title used in tabs and body used when slide is displayed.
 * Uses 'CRHA' for centering.
 */
.CRHA > ul > li > div > .accordion-text {
   position: absolute;                    /* might need this */
   z-index: 100;
   padding: 0;
   height: 50vh;                          /* = free var 'height', this is critical! */
   width: 50vh;                           /* = free var 'height', this is critical! */
   margin: 0 0 0 calc(-25vh + 50%);       /* = calc(-'height'/2px + 50%), this is critical! */
   transition: all 500ms ease;            /* might need this for 'accordion-text' animation on slide opening */
   -webkit-transform: rotate(-90deg);
   -moz-transform: rotate(-90deg);
   -ms-transform: rotate(-90deg);
   -o-transform: rotate(-90deg);
   transform: rotate(-90deg);
}
.CRHA.h-100 > ul > li > div > .accordion-text {
   height: 100vh;
   width: 100vh;
   margin: 0 0 0 calc(-50vh + 50%);
}
.CRHA.h-90 > ul > li > div > .accordion-text {
   height: 90vh;
   width: 90vh;
   margin: 0 0 0 calc(-45vh + 50%);
}
.CRHA.h-80 > ul > li > div > .accordion-text {
   height: 80vh;
   width: 80vh;
   margin: 0 0 0 calc(-40vh + 50%);
}
.CRHA.h-70 > ul > li > div > .accordion-text {
   height: 70vh;
   width: 70vh;
   margin: 0 0 0 calc(-35vh + 50%);
}
.CRHA.h-60 > ul > li > div > .accordion-text {
   height: 60vh;
   width: 60vh;
   margin: 0 0 0 calc(-30vh + 50%);
}
.CRHA.h-50 > ul > li > div > .accordion-text {
   height: 50vh;
   width: 50vh;
   margin: 0 0 0 calc(-25vh + 50%);
}
.CRHA.h-40 > ul > li > div > .accordion-text {
   height: 40vh;
   width: 40vh;
   margin: 0 0 0 calc(-20vh + 50%);
}
.CRHA.h-40 > ul > li > div > .accordion-text {
   height: 40vh;
   width: 40vh;
   margin: 0 0 0 calc(-20vh + 50%);
}
.CRHA.h-30 > ul > li > div > .accordion-text {
   height: 30vh;
   width: 30vh;
   margin: 0 0 0 calc(-15vh + 50%);
}
.CRHA.h-20 > ul > li > div > .accordion-text {
   height: 20vh;
   width: 20vh;
   margin: 0 0 0 calc(-10vh + 50%);
}
.CRHA.h-10 > ul > li > div > .accordion-text {
   height: 10vh;
   width: 10vh;
   margin: 0 0 0 calc(-5vh + 50%);
}
.CRHA.h-0 > ul > li > div > .accordion-text {
   height: 0;
   width: 0;
   margin: 0;
}
.CRHA.hover > ul > li:hover > div > .accordion-text, 
.CRHA > ul > li.open > div > .accordion-text {
   /*position: static;*/
   width: 100%;
   height: 100%;
   margin: 0;
   -webkit-transform: rotate(0deg);
   -moz-transform: rotate(0deg);
   -ms-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   transform: rotate(0deg);
}
.CRHA.hover.no-open-text > ul > li:hover > div > .accordion-text, 
.CRHA.hover > ul > li.no-open-text:hover > div > .accordion-text,
.CRHA.no-open-text > ul > li.open > div > .accordion-text,
.CRHA > ul > li.open.no-open-text > div > .accordion-text {
   display: none;
}


/* 
 * Accordion title
 * ---------------
 * It is used as tab and slide title.
 * Uses 'CRHA' for centering.
 */
.CRHA > ul > li > div > .accordion-text .accordion-title {
/* ####################################################################### when CLOSED */
   font-size: 2.5rem;
   color: white;                          /* free var 'tab-title-font-color */
   text-shadow: 2px 2px rgba(255, 255, 255, .5);
   margin: 0;
   padding: 0 10px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
/* #################################################################################### */
   text-align: left;
   font-family: 'Sunflower', sans-serif;
   font-weight: bold;
   text-shadow: 5px 5px rgba(0, 0, 0, .5);
	/* Larger screens */ 									
	@media only screen and (min-width: 400px) {
	   padding-left: 260px;
	   font-size: 6.5rem;
	}
	/* Smaller tablets and mobiles */ 						
	@media only screen and (orientation: landscape) {
	   padding-left: 80px;
	   font-size: 3.5rem;
	}
   padding-left: 160px;
   font-size: 6.5rem;
/* #################################################################################### */
}
.CRHA.hover > ul > li:hover > div > .accordion-text .accordion-title, 
.CRHA > ul > li.open > div > .accordion-text .accordion-title {
/* #################################################################### TITLE when OPEN */
   display: inline-block;                 /* might need this to contract background color around title */
   font-size: 3rem;
   color: white;                          /* free var 'title-font-color' */
   text-shadow: 2px 2px rgba(0, 0, 0, .5);
   padding: 5px 10px;
   background-color: rgba(0, 0, 0, 0.4);  /* free var 'title-open-back-color' */
   border-radius: 5px;                   /* = free var 'radius' */
}
 
/* 
 * Accordion body
 * --------------
 * It is used as text in slides.
 * Uses 'CRHA' for centering.
 */
.CRHA > ul > li > div > .accordion-text .accordion-body {
/* ##################################################################### TEXT when OPEN */
   display: none;
   color: white;                          /* free var 'body-font-color */
   text-align: justify;
   padding: 0 10px;
   margin: 10px;
   border-radius: 5px;
   background-color: rgba(0, 0, 0, 0.7);  /* free var 'body-back-color' */
   font-size: 2rem;
}
.CRHA.hover > ul > li:hover > div > .accordion-text .accordion-body, 
.CRHA > ul > li.open > div > .accordion-text .accordion-body {
   display: block;
}

/* 
 * Accordion images
 * ----------------
 * It is used in slides below accordion text and navigation arrows.
 */
.CRHA > ul > li > div > .accordion-img {
   position: absolute;
   z-index: 1;
   top: 0;
   left: 0;
   display: block;                        /* need this to always show images */
   width: auto;
   height: 100%;                          /* need this to fill tab vertically dictated by free var 'img-position' */
}
.CRHA.hover > ul > li:hover > div > .accordion-img, 
.CRHA > ul > li.open > div > .accordion-img {
   width: 100%;
   height: auto;
}
.CRHA.hover.img-cover > ul > li:hover > div > .accordion-img, 
.CRHA.hover > ul > li.img-cover:hover > div > .accordion-img, 
.CRHA.img-cover > ul > li.open > div > .accordion-img,
.CRHA > ul > li.open.img-cover > div > .accordion-img {
   height: 100%;
   object-fit: cover;
}

/* 
 * Background images
 * -----------------
 * Adjust it for your project.
 */
 
.CRHA > ul > li:nth-child(1) > div { 
   background-image: url("https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg");
}

/* 
 * Accordion navigation
 * --------------------
 * It is used in slides for navigation.
 */
.CRHA > ul > li > div > .accordion-nav {
   position: fixed;
   z-index: 200;
   width: 100%;                           /* need this to expand fully inside the parent! */
   top: 50%;                              /* need this to center the container! */
}
.CRHA > ul > li > div > .accordion-nav a {
   /* you can't use one big navigation area as it blocks scrolling when mouse is
      over it! So, we break them to 2 small anchor areas! */
   position: absolute;
   font-size: 50px;
   line-height: 50px;
   width: 50px;
   text-align: center;
   color: #ddd;
   cursor: pointer;
   transition: all 250ms ease;
   transform: translateY(-50%);           /* need this to center this child in the container! */
}
.CRHA > ul > li > div > .accordion-nav a.disabled {
   cursor: not-allowed;
   opacity: 0.5;
}
.CRHA > ul > li > div > .accordion-nav a:nth-child(1) {
   left: 0px;
}
.CRHA > ul > li > div > .accordion-nav a:nth-child(2) {
   right: 9px;                           /* = 'accordion-gutter' + 'border' + 2px */
}
/* hover */
.CRHA > ul > li > div > .accordion-nav a:not([class*="disabled"]):hover {
   color: white;
}
/* 'fix-nav-scroll-overlap' */
.CRHA.fix-nav-scroll-overlap > ul > li > div > .accordion-nav a:nth-child(2) {
   right: 22px;                          /* = 'accordion-gutter' + 'border' + 2px + 13px  for scrollbars */
}
/* 'nav-circle', 'nav-square' */
.CRHA.nav-circle > ul > li > div > .accordion-nav a {
   border-radius: 50px;
}
.CRHA.nav-circle > ul > li > div > .accordion-nav a, 
.CRHA.nav-square > ul > li > div > .accordion-nav a {
   background-color: rgba(0, 0, 0, 0.2);  /* free var 'nav-back-color' */
}
.CRHA.nav-circle > ul > li > div > .accordion-nav a:not([class*="disabled"]):hover, 
.CRHA.nav-square > ul > li > div > .accordion-nav a:not([class*="disabled"]):hover {
   background-color: rgba(0, 0, 0, 0.4);  /* free var 'nav-hover-back-color' */
}
/* 'nav-top' */
.CRHA.nav-top > ul > li > div > .accordion-nav {
   top: 0%;
}
.CRHA.nav-top > ul > li > div > .accordion-nav a {
   transform: translateY(2px);            /* = `border` */
}
/* 'nav-bottom' */
.CRHA.nav-bottom > ul > li > div > .accordion-nav {
   top: auto;
   bottom: 9px;                           /* = 'accordion-gutter' + 'border' + 2px */
}
.CRHA.nav-bottom > ul > li > div > .accordion-nav a {
   transform: translateY(-100%);
}

/* Reset for low width screens */
/* max width: 600px */
@media screen and (max-width: 600px) { 
   /* Basic code */
   .CRHA.reset-max-600 {
      height: auto; 
   }
   .CRHA.reset-max-600 > ul > li > div > :not([class*="accordion-text"]) {
      display: block;
   }
   .CRHA.reset-max-600 > ul,
   .CRHA.reset-max-600 > ul > li {
      display: block;
      width: 100%;
   }
   .CRHA.reset-max-600 > ul > li > div, 
   .CRHA.reset-max-600:not([class*="hover"]) > ul > li:hover > div {
      background-color: #e9e9e9;             /* free var 'slide-back-color' */
      background-position: center;
   }
   
   /* Hover, open control classes */
   .CRHA.reset-max-600.hover > ul:hover > li, 
   .CRHA.reset-max-600.hover > ul:focus > li, 
   .CRHA.reset-max-600.hover > ul > li:hover,
   .CRHA.reset-max-600.hover > ul > li:focus,
   .CRHA.reset-max-600.open > ul > li,
   .CRHA.reset-max-600.open > ul > li.open {
      width: 100%;
   }
   
   /* Scroll control class */
   .CRHA.reset-max-600.scroll > ul > li > div, 
   .CRHA.reset-max-600 > ul > li.scroll > div {
      overflow: auto;
   }
   
   /* Accordion text */
   .CRHA.reset-max-600 > ul > li > div > .accordion-text {
      /*position: static;*/
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   .CRHA.reset-max-600.no-open-text > ul > li > div > .accordion-text,
   .CRHA.reset-max-600 > ul > li.no-open-text > div > .accordion-text {
      display: none;
   }
   
   /* Accordion title */
   .CRHA.reset-max-600 > ul > li > div > .accordion-text .accordion-title {
      display: inline-block;                 /* might need this to contract background color around title */
      font-size: 3rem;
      color: white;                          /* free var 'title-font-color' */
      padding: 5px 10px;
      text-shadow: 2px 2px rgba(0, 0, 0, .5);
      background-color: rgba(0, 0, 0, 0.4);  /* free var 'title-open-back-color' */
   }
   
   /* Accordion body */
   .CRHA.reset-max-600 > ul > li > div > .accordion-text .accordion-body {
      display: block;
   }
   
   /* Accordion images */
   .CRHA.reset-max-600 > ul > li > div > .accordion-img {
      width: 100%;
      height: auto;
   }
   .CRHA.reset-max-600.img-cover > ul > li > div > .accordion-img, 
   .CRHA.reset-max-600 > ul > li.img-cover > div > .accordion-img {
      height: 100%;
      object-fit: cover;
   }
   
   /* Accordion navigation */
   .CRHA.reset-max-600 > ul > li > div > .accordion-nav,
   .CRHA.reset-max-600.hover > ul > li:hover > div > .accordion-nav,
   .CRHA.reset-max-600.open > ul > li.open > div > .accordion-nav {
      display: none;
   }
}
/* max width: 500px */
@media screen and (max-width: 500px) { 
   /* Basic code */
   .CRHA.reset-max-500 {
      height: auto; 
   }
   .CRHA.reset-max-500 > ul > li > div > :not([class*="accordion-text"]) {
      display: block;
   }
   .CRHA.reset-max-500 > ul,
   .CRHA.reset-max-500 > ul > li {
      display: block;
      width: 100%;
   }
   .CRHA.reset-max-500 > ul > li > div, 
   .CRHA.reset-max-500:not([class*="hover"]) > ul > li:hover > div {
      background-color: #e9e9e9;             /* free var 'slide-back-color' */
      background-position: center;
   }
   
   /* Hover, open control classes */
   .CRHA.reset-max-500.hover > ul:hover > li, 
   .CRHA.reset-max-500.hover > ul:focus > li, 
   .CRHA.reset-max-500.hover > ul > li:hover,
   .CRHA.reset-max-500.hover > ul > li:focus,
   .CRHA.reset-max-500.open > ul > li,
   .CRHA.reset-max-500.open > ul > li.open {
      width: 100%;
   }
   
   /* Scroll control class */
   .CRHA.reset-max-500.scroll > ul > li > div, 
   .CRHA.reset-max-500 > ul > li.scroll > div {
      overflow: auto;
   }
   
   /* Accordion text */
   .CRHA.reset-max-500 > ul > li > div > .accordion-text {
      /*position: static;*/
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   .CRHA.reset-max-500.no-open-text > ul > li > div > .accordion-text,
   .CRHA.reset-max-500 > ul > li.no-open-text > div > .accordion-text {
      display: none;
   }
   
   /* Accordion title */
   .CRHA.reset-max-500 > ul > li > div > .accordion-text .accordion-title {
      display: inline-block;                 /* might need this to contract background color around title */
      font-size: 3rem;
      color: white;                          /* free var 'title-font-color' */
      padding: 5px 10px;
      text-shadow: 2px 2px rgba(0, 0, 0, .5);
      background-color: rgba(0, 0, 0, 0.4);  /* free var 'title-open-back-color' */
   }
   
   /* Accordion body */
   .CRHA.reset-max-500 > ul > li > div > .accordion-text .accordion-body {
      display: block;
   }
   
   /* Accordion images */
   .CRHA.reset-max-500 > ul > li > div > .accordion-img {
      width: 100%;
      height: auto;
   }
   .CRHA.reset-max-500.img-cover > ul > li > div > .accordion-img, 
   .CRHA.reset-max-500 > ul > li.img-cover > div > .accordion-img {
      height: 100%;
      object-fit: cover;
   }
   
   /* Accordion navigation */
   .CRHA.reset-max-500 > ul > li > div > .accordion-nav,
   .CRHA.reset-max-500.hover > ul > li:hover > div > .accordion-nav,
   .CRHA.reset-max-500.open > ul > li.open > div > .accordion-nav {
      display: none;
   }
}
/* max width: 400px */
@media screen and (max-width: 400px) { 
   /* Basic code */
   .CRHA.reset-max-400 {
      height: auto; 
   }
   .CRHA.reset-max-400 > ul > li > div > :not([class*="accordion-text"]) {
      display: block;
   }
   .CRHA.reset-max-400 > ul,
   .CRHA.reset-max-400 > ul > li {
      display: block;
      width: 100%;
   }
   .CRHA.reset-max-400 > ul > li > div, 
   .CRHA.reset-max-400:not([class*="hover"]) > ul > li:hover > div {
      background-color: #e9e9e9;             /* free var 'slide-back-color' */
      background-position: center;
   }
   
   /* Hover, open control classes */
   .CRHA.reset-max-400.hover > ul:hover > li, 
   .CRHA.reset-max-400.hover > ul:focus > li, 
   .CRHA.reset-max-400.hover > ul > li:hover,
   .CRHA.reset-max-400.hover > ul > li:focus,
   .CRHA.reset-max-400.open > ul > li,
   .CRHA.reset-max-400.open > ul > li.open {
      width: 100%;
   }
   
   /* Scroll control class */
   .CRHA.reset-max-400.scroll > ul > li > div, 
   .CRHA.reset-max-400 > ul > li.scroll > div {
      overflow: auto;
   }
   
   /* Accordion text */
   .CRHA.reset-max-400 > ul > li > div > .accordion-text {
      /*position: static;*/
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   .CRHA.reset-max-400.no-open-text > ul > li > div > .accordion-text,
   .CRHA.reset-max-400 > ul > li.no-open-text > div > .accordion-text {
      display: none;
   }
   
   /* Accordion title */
   .CRHA.reset-max-400 > ul > li > div > .accordion-text .accordion-title {
      display: inline-block;                 /* might need this to contract background color around title */
      font-size: 3rem;
      color: white;                          /* free var 'title-font-color' */
      padding: 5px 10px;
      text-shadow: 2px 2px rgba(0, 0, 0, .5);
      background-color: rgba(0, 0, 0, 0.4);  /* free var 'title-open-back-color' */
   }
   
   /* Accordion body */
   .CRHA.reset-max-400 > ul > li > div > .accordion-text .accordion-body {
      display: block;
   }
   
   /* Accordion images */
   .CRHA.reset-max-400 > ul > li > div > .accordion-img {
      width: 100%;
      height: auto;
   }
   .CRHA.reset-max-400.img-cover > ul > li > div > .accordion-img, 
   .CRHA.reset-max-400 > ul > li.img-cover > div > .accordion-img {
      height: 100%;
      object-fit: cover;
   }
   
   /* Accordion navigation */
   .CRHA.reset-max-400 > ul > li > div > .accordion-nav,
   .CRHA.reset-max-400.hover > ul > li:hover > div > .accordion-nav,
   .CRHA.reset-max-400.open > ul > li.open > div > .accordion-nav {
      display: none;
   }
}
/* max width: 300px */
@media screen and (max-width: 300px) { 
   /* Basic code */
   .CRHA.reset-max-300 {
      height: auto; 
   }
   .CRHA.reset-max-300 > ul > li > div > :not([class*="accordion-text"]) {
      display: block;
   }
   .CRHA.reset-max-300 > ul,
   .CRHA.reset-max-300 > ul > li {
      display: block;
      width: 100%;
   }
   .CRHA.reset-max-300 > ul > li > div, 
   .CRHA.reset-max-300:not([class*="hover"]) > ul > li:hover > div {
      background-color: #e9e9e9;             /* free var 'slide-back-color' */
      background-position: center;
   }
   
   /* Hover, open control classes */
   .CRHA.reset-max-300.hover > ul:hover > li, 
   .CRHA.reset-max-300.hover > ul:focus > li, 
   .CRHA.reset-max-300.hover > ul > li:hover,
   .CRHA.reset-max-300.hover > ul > li:focus,
   .CRHA.reset-max-300.open > ul > li,
   .CRHA.reset-max-300.open > ul > li.open {
      width: 100%;
   }
   
   /* Scroll control class */
   .CRHA.reset-max-300.scroll > ul > li > div, 
   .CRHA.reset-max-300 > ul > li.scroll > div {
      overflow: auto;
   }
   
   /* Accordion text */
   .CRHA.reset-max-300 > ul > li > div > .accordion-text {
      /*position: static;*/
      width: 100%;
      height: 100%;
      margin: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   .CRHA.reset-max-300.no-open-text > ul > li > div > .accordion-text,
   .CRHA.reset-max-300 > ul > li.no-open-text > div > .accordion-text {
      display: none;
   }
   
   /* Accordion title */
   .CRHA.reset-max-300 > ul > li > div > .accordion-text .accordion-title {
      display: inline-block;                 /* might need this to contract background color around title */
      font-size: 3rem;
      color: white;                          /* free var 'title-font-color' */
      padding: 5px 10px;
      text-shadow: 2px 2px rgba(0, 0, 0, .5);
      background-color: rgba(0, 0, 0, 0.4);  /* free var 'title-open-back-color' */
   }
   
   /* Accordion body */
   .CRHA.reset-max-300 > ul > li > div > .accordion-text .accordion-body {
      display: block;
   }
   
   /* Accordion images */
   .CRHA.reset-max-300 > ul > li > div > .accordion-img {
      width: 100%;
      height: auto;
   }
   .CRHA.reset-max-300.img-cover > ul > li > div > .accordion-img, 
   .CRHA.reset-max-300 > ul > li.img-cover > div > .accordion-img {
      height: 100%;
      object-fit: cover;
   }
   
   /* Accordion navigation */
   .CRHA.reset-max-300 > ul > li > div > .accordion-nav,
   .CRHA.reset-max-300.hover > ul > li:hover > div > .accordion-nav,
   .CRHA.reset-max-300.open > ul > li.open > div > .accordion-nav {
      display: none;
   }
}

/**
 * CRHA
 * ========================
 * Centers elements horizontally & vertically.
 * Ex.: <sth class="CRHA">
 *         <x1 class="centered">...</x1>
 *         <x2 class="centered">...</x2>
 *      </sth>
 */
.CRHA {
   display: table;
   table-layout: fixed;
   width: 100%;
}
.CRHA > .centered, 
.CRHA > .north,
.CRHA > .south {
   display: table-cell;
}
.CRHA > .centered {
   text-align: center;
   vertical-align: middle;
}
.CRHA > .north {
   text-align: center;
   vertical-align: top;
}
.CRHA > .south {
   text-align: center;
   vertical-align: bottom;
}

/* #################################################################################### */
 @font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-06MfSroEC.ttf) format('truetype');
}
@font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0sMbSroEC.ttf) format('truetype');
}
@font-face {
  font-family: 'Sunflower';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/sunflower/v16/RWmPoKeF8fUjqIj7Vc-0-MDSroEC.ttf) format('truetype');
}
body {
	background-color: #000000;
	color: white;
}
/* #################################################################################### */

</style>

  <script>
  window.console = window.console || function(t) {};
</script>

</head>

<body translate="no" id="top">
<!-- Start accordion -->
<div class="CRHA h-100 reset-max-600 hover nav nav-square nav-bottom scroll">
  <ul>
    <!-- Start 1st slide -->
    <li>
      <div style="background-position: 30px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">ABOUT</h2>
            <p class="accordion-body">
              7-time Grammy Award-nominated, 3-time Grammy Award-winning music producer, audio engineer, mixer, sound designer, and front-of-house (FOH) engineer,
<b>Marc Urselli</b> is an interdisciplinary artist, scholar, and devotee of all things art, sound & music.
He works for and collaborates with musical & visual artist, bands, musicians, composers, theater directors, film, TV, brands &
mixed media multi-disciplinaries, artists and entities around the world.
<br /><br />
He has worked with
<b>U2, Foo Fighters, Nick Cave, Lou Reed, Sting, Keith Richards, Kesha, Jeff Beck, Les Paul,
Buddy Guy, Luther Vandross, Børns, The Black Crowes, Frank Sinatra, Joss Stone, Mike Patton,
John Zorn, Jack DeJohnette, Esperanza Spalding, John Patitucci, Laurie Anderson, David J (Bauhaus)</b>
and scores of artists performing jazz, rock, metal, blues, pop, electronica,
experimental/avantgarde/new music, and classical music.
<br /><br />
Marc Urselli is the chief engineer at <a href="http://eastsidesound.com/" target="new"EastSide Sound</a>EastSide Sound</a> (the oldest-running recording studio in New York City's Lower EastSide)
and owner / chief engineer at <a href="http://audioconfidential.com/" target="new"EastSide Sound</a>Audio Confidential</a> (his analog NEVE console-equipped recording studio in Midtown Manhattan).
Otherwise, he’s active in studios worldwide, including Abbey Road (London), Village Recorders (LA), Capitol Sound (LA), EastWest (LA), Sunset Sound (LA), Sear Sound (NY), Flux (NY), and Grouse Lodge (Dublin), among others.
<br /><br />
Marc was born in Switzerland and raised in Italy. His musical education began at age 7 and by 17 he opened his ﬁrst commercial recording facility in Italy.
<br /><br />
Marc is also an avid traveler, foodie and entrepreneur whose interests include the arts, food (check out his food blog at <a href="http://touringfoodie.com/" target="new">Touring Foodie</a>), kitesurﬁng, snowboarding, writing...
<br /><br />
You can follow Marc and his travels and adventures on social media:
<a href="http://www.instagram.com/marcurselli" target="new"><img width="32px" heigth="32px" src="2025_content/social-media-icons/ig.png" /></a>&nbsp;
<a href="http://www.facebook.com/marcurselli" target="new"><img width="24px" heigth="24px" src="2025_content/social-media-icons/fb.png" /></a>&nbsp;
<a href="http://www.linkedin.com/in/marcurselli" target="new"><img width="24px" heigth="24px" src="2025_content/social-media-icons/li.png" /></a>&nbsp;
<a href="http://www.twitter.com/marcurselli" target="new"><img width="32px" heigth="32px" src="2025_content/social-media-icons/x.png" /></a>&nbsp;
<br /><br />            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a class="disabled" href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 1st slide -->
  <!-- Start 2nd slide -->
    <li>
      <div style="background-position: -110px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">PRODUCER</h2>
            <p class="accordion-body">
              Marc Urselli's biggest passion is producing records for artists he believes in.<br />
Marc's mentor was the late great <b>Hal Willner</b> with whom he worked on various albums and concert productions.<br />
Below is a selected discography of albums Marc has produced [and recorded & mixed]:<br />
<br /><br />
<b>Newly Released in 2026:</b>
<br />
&#9678; <img src="https://f4.bcbits.com/img/a2137056100_16.jpg" width="100px" heigth="100px" />&nbsp; <b>ZU</b> - <i><a href="https://zuhom.bandcamp.com/album/ferrum-sidereum">Ferrum Sidereum</a></i> [House of Mythology records]<br />
<br />
&#9678; <img src="https://i.audiomack.com/manu-lafer/3b32c77696.webp?width=1440" width="100px" heigth="100px" />&nbsp; <b>Manu Lafer</b> - <i><a href="https://audiomack.com/manu-lafer/album/duets-6930469">Duets</a></i> [Tratore records]<br />
&nbsp;&nbsp;&nbsp;Duet album featuring <b>Thana Alexa, Claudia Acuna, Roxana Amed, Suset, Diana Burco, Virginia Rosa, Giana Viscardi, Sasha Papernik, Annie Moore</b>
<br />
<br /><br />
<b>Upcoming in 2026:</b>
<br />
&#9678; <b>David J</b> (Bauhaus/Love & Rockets) & <b>Paul Wallfish</b> [Swans/Botanica] featuring <b>Gavin Friday</b> (Virgin Prunes) - <i>Egon [In Praise of a Deranged Mind]</i> [Independent Project Records] Coming soon...<br />
&#9678; <b>Marco Cappelli</b> featuring <b>Raiz</b> [Almamegretta] - <i>Italian Doc Remix</i> coming soon...<br />
&#9678; <b>Massimo Pupillo</b> (Zu), <b>Nicola Manzan</b> (Bologna Violenta) featuring <b>Terry Riley</b>, <b>Penny Rimbaud</b>, <b>Anne Waldman</b> - <i>Nimana</i> [Improved Sequence records] coming soon...<br />
<br /><br />
<b>Previously Released:</b>
<br />
&#9678; <b>Ramones Redux</b> - <i>Tribute to the Ramones</i> featuring <b>Napalm Death</b>, <b>Voivod</b>, <b>Ufomammut</b>, <b>Thurston Moore</b>, <b>Gwar</b> and many others [Magnetic Eye Records]<br />
&#9678; <b>Jim Jarmusch</b>, <b>Lee Ranaldo</b>, <b>Balazs Pandi</b> - <i>Churning of the Ocean</i> & <i>S/T</i> [Trost Records]<br />
&#9678; <b>SteppenDoom</b> featuring <b>Huun Huur Tu</b> and members of <b>Neurosis</b>, <b>Paradise Lost</b>, <b>Heiling</b>, <b>Cult of Luna</b> and many many others... [Magnetic Eye Records]<br />
&#9678; <b>Kaoru Watanabe</b> - <i>Neo</i> <br />
&#9678; <b>Zé Ibarra, Dora Morelenbaum, Julia Mestre</b> - <i>Live at Glasshaus</i> [Glasshaus records]<br />
&#9678; <b>Kilter</b> - <i>Axiom</i> [Alter-Nativ Label]<br />
            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 2nd slide -->
  <!-- Start 3rd slide -->
    <li>
      <div style="background-position: -250px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">ENGINEER</h2>
            <p class="accordion-body">
              Marc Urselli's discography as an engineer features some of the biggest, most important and most influential musical artists of our time.<br />
Below is a selected discography of albums Marc has engineered:<br />
<br />
<b>Newly Released in 2026:</b>
<br />
&#9678; <img src="https://f4.bcbits.com/img/a0976575976_16.jpg" width="100px" heigth="100px" />&nbsp; <b>Death Cult</b> - <i><a href="https://thecult.bandcamp.com/album/paradise-live">Paradise Live</a></i> [Beggars Banquet Records]<br />
<br />
<span id="PartialDiscography">
&#9678; <b>Nick Cave, U2, Elton John, Joan Jett, Kesha, Father John Misty, Devendra Banhart, Todd Rundgren, David Johansen, Sean Ono Lennon, Julian Lennon, Beth Orton, Lucinda Williams, Peaches</b> and many many others... - <i>AngelHeaded Hipster (the Songs of Marc Bolan & T.Rex)</i> (BMG UK)<br />
&#9678; <b>Les Paul</b>, <b>Sting</b>, <b>Eric Clapton</b>, <b>Buddy Guy</b>, <b>Keith Richards</b> and many many others... - <i>American Made, World Played</i> (Capitol Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;win&nbsp;</span> <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;win&nbsp;</span><br />
&#9678; <b>Laibach</b> - <i>new album coming soon...</i> (Mute)<br />
&#9678; <b>John Lurie</b> - <i>Painting with John</i> (Royal Potato Family)<br />
&#9678; <b>Terri Lyne Carrington & Social Science</b> - <i>Waiting Game</i> (Motema Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;nom&nbsp;</span><br />
&#9678; <b>Frank Sinatra</b> - Live in Pompei<br />
&#9678; <b>Death Cult</b> - Live in Manchester<br />
&#9678; <b>Ghost Train Orchestra</b> & <b>Kronos Quartet</b> - <i>Songs & Symphoniques: The Music of Moondog</i> (Cantaloupe Records)<br />
&#9678; <b>Laurie Anderson</b> - <i>Homeland</i> (Nonesuch Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;nom&nbsp;</span><br />
&#9678; <b>Lila Downs</b> - <i>One Blood (Una Sangre)</i> (EMI, Narada World, Virgin Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;win&nbsp;</span><br />
&#9678; <b>Roy Hargrove's RH Factor</b> - <i>Strength</i> (Verve Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;nom&nbsp;</span><br />
&#9678; <b>Claudia Acuña</b> - <i>Turning Pages</i> (Delfin Records) <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;"><img src="/onepage/MU-images/vectors/grammy.png" width="20px" height="20px" />&nbsp;nom&nbsp;</span><br />
&#9678; <b>John Patitucci</b> - <i>Irmãos de Fé</i> (Newvelle Records)<br />
&#9678; <b>Jack DeJohnette</b> - <i>Return</i> (Newvelle Records)<br />
&#9678; <b>Ennio Morricone</b> - <i>We All Love Ennio Morricone</i> (Sony Records)<br />
&#9678; <b>John Zorn</b> <i>...over 100 records by John Zorn were recorded and mixed by Marc Urselli</i> (Tzadik Records)<br />
<br /><br />
&#9678; <b>Zoe Modiga</b> - <i>Inganekwane</i> Best Engineered Album @ 2020 South African Music Award <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;">&nbsp;win&nbsp;</span><br />
&#9678; <b>Mijung Lim</b> - <i>Impromptu</i> Best Jazz Instrumental Album @ Korean Music Awards 2026 <span style="font-weight:bold;font-size:0.7em;color:black;background-color:white;border: 1px solid white;">&nbsp;win&nbsp;</span><br />
<br /><br />
</span>

		<span id="PartialDiscographyLink">
			To see a more complete discography <a onclick="Discography()">please click here</a><br />
		</span>
		<script>
		function Discography() {
		  var full = document.getElementById("FullDiscography");
		  var partial = document.getElementById("PartialDiscography");
		  var link = document.getElementById("PartialDiscographyLink");
		  if (full.style.display === "none") {
			full.style.display = "block";
			partial.style.display = "none";
			link.style.display = "none";
		  } else {
			full.style.display = "none";
			partial.style.display = "block";
			link.style.display = "block";
		  }
		}
		</script>
		<span style="display:none;" id="FullDiscography">
			<a onclick="Discography()">&#10006; close</a><br />
			<iframe width="100%" height="800px" src="2025_content/discography.php"'"></iframe>
		</span>
            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 3rd slide -->
  <!-- Start 4th slide -->
    <li>
      <div style="background-position: -390px; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">FOH MIXER</h2>
            <p class="accordion-body">
              Marc Urselli's ears and experience have been trusted by many artists and organizations for the biggest events and the most prestigious venues in the world, from small jazz clubs to stadiums and arenas.<br /><br />
Below is a select list of concert productions & venues that Marc has mixed FOH live sound for:<br />
<br />
&#9678; <b>The Winter Olympics Closing Ceremony</b> - <i>Arena di Verona, Verona, Italy</i> 2026<br />
&#9678; <b>The Winter Paralympics Opening Ceremony</b> - <i>Arena di Verona, Verona, Italy</i> 2026<br />
&#9678; <b>The Grammy Awards Premiere Ceremony</b> - <i>Las Vegas, NV & Los Angeles, CA</i> 2022 to present...<br />
&#9678; <b>The National Christmas Tree Lighting Ceremony</b> - <i>The White House, Washington DC</i> 2016 to present...<br />
&#9678; <b>The MET Gala</b> by Vogue - <i>Metropolitan Museum of Art, New York, NY</i> 2016 to present...<br />
&#9678; <b>2001: A Space Odyssey - Filarmónica Ciudad de México Orchestra</b> (Southbank Center London production) - <i>Auditorio Nacional, Mexico City, Mexico</i> 2023<br />
<br />
Below is a select list of artists Marc has mixed FOH live sound for:<br />
<br />
&#9678; <b>Lou Reed</b> - <i>From VU to LU</i>, <i>From VU to LU</i> tour, <i>Metal Machine Music 3</i> tour, <i>Yellow Pony</i> tour and many tours between 2008 and 2013<br />
&#9678; <b>Laurie Anderson</b> - <i>Homeland tour</i> 2008<br />
&#9678; <b>John Zorn</b> - many concerts and tours between 2007 and 2024, including his 60th Birthday celebrations and 70th Birthday celebrations<br />
&#9678; <b>Sunn O)))</b> -<i>Unsound Festival, Lincoln Center, NY</i> 2024<br />
&#9678; <b>Mike Patton's MondoCane</b> - 2011 to 2019<br />
&#9678; <b>Mike Patton's Tomahawk</b> - 2012<br />
&#9678; <b>Marianne Faithfull</b> - <i>Easy Come, Easy Go tour</i> 2009<br />
&#9678; <b>Lighthouse Family</b> - <i>Blue Sky in Your Head tour</i> 2018-2019<br />
&#9678; <b>The Black Crowes</b> 2014<br />
&#9678; <b>The Beach Boys</b> 2015<br />
&#9678; <b>Little Kids Rock Benefit Concert</b> (Mavis Staples, Hozier, John Rzeznik, Michael Bearden) - <i>Terminal 5, New York, NY</i> 2022<br />
&#9678; <b>Royal Machines</b> (with members of <b>Billy Idol, Foo Fighters, AC/DC, Guns'n'Roses, Skid Row</b>) - <i>Las Vegas, NV</i> 2024<br />
&#9678; <b>Rent: The Musical with Orchestra</b> - <i>San Diego, CA / Lincoln, NE / Costa Mesa CA</i> 2024-2025<br />
&#9678; <b>Perle Noire: Meditations for Joséphine Baker</b> (Opera directed by Peter Sellars with music composed by Tyshawn Sorey) - <i>The Dutch National Opera, Amsterdam, NL</i> 2023<br />
&#9678; <b>Monochromatic Light (Afterlife)</b> (Opera directed by Peter Sellars with music composed by Tyshawn Sorey) - <i>The Armory, New York, NY</i> 2022<br />
            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 4th slide -->
  <!-- Start 5th slide -->
    <li>
      <div style="background-position: -535px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">ART WORLD</h2>
            <p class="accordion-body">
              Marc Urselli's art has been exhibited in major museums all around the world and his work is also in some private collections and permanent collections.
<br /><br />
Most recently the <b>San Diego Museum of Art</b> prominently commissioned and featured the exhibition "Palpitations" by Marc Urselli and Mexican surrealist painter <b>Marianela De la Hoz</b> (on view from September 2025 to February 2026),
following which the Museum acquired the central piece of this exhibit for their permanent collection.<br />
You can read more about it <a target="new" href="https://www.sdmart.org/exhibition/marianela-de-la-hoz-and-marc-urselli-palpitations/">here</a>.<br />
<iframe width="500" height="281" src="https://www.youtube.com/embed/gYA-mPyNn9M" title="Marianela de la Hoz and Marc Urselli / Palpitations: The Cadence of Heartbeats" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<br /><br />
Marc Urselli has  provided his unique brand site-specific composition, sound installations and/or sound design for visual artists such as
Ethiopian-American <b>Julie Mehretu</b>, Italian painter/multimedia artist <b>Federico Solmi</b>, Italian sculptor/painter <b>Arianna Carossa</b>, French lighting artist <b>Laurent Fort</b>, Chilean video artist <b>Nicolás Rupcich</b>, American installation artist <b>Michelle Jaffé</b> and more.
<br /><br />
Marc's sound design has been featured, presented, or exhibited at the <b>2024 Venice Biennale</b> in Venice, Italy, <b>The Park Avenue Armory</b> in New York, NY, the <b>Modern Art Museum</b> of Santiago de Chile, Chile, <b>Le Son 7 Galleries</b> in London, UK / New York, NY / Madrid, Spain / Paris, France, <b>Villa Hanbury</b> in Ventimiglia, Italy, the <b>Castello della Lucertola</b> in Apricale, Italy, the <b>Galeria na Dziedziniec</b> in Poznan, Poland, <b>The New Gallery</b> in Hudson, New York and the <b>Governors Island Art Fair</b>, New York.
<br /><br />            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 5th slide -->
  <!-- Start 6th slide -->
    <li>
      <div style="background-position: -680px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">SOUND DESIGN</h2>
            <p class="accordion-body">
              Marc Urselli has worked as sound-designer in theater & modern opera productions with theater directors such as <b>Peter Sellars</b> and <b>Julian Crouch</b>,
and contemporary classical composers such as MacArthur fellow <b>Tyshawn Sorey</b>, MacArthur fellow & Pulitzer Prize finalist <b>John Zorn</b>, Rome Prize winner <b>Paola Prestini</b>, Music Critics Association of North America Award winner <b>Missy Mazzoli</b> and many others.<br />
Marc has worked in prestigious halls such as <b>The Park Avenue Armory</b> in New York, NY, <b>The Elbphilharmonie</b> in Hamburg, Germany, the <b>Dutch National Opera House</b> in Amsterdam, Netherlands, the <b>Auditorio Nacional</b> in Mexico City, Mexico, <b>Palazzo Grassi</b>, Venice, Italy,  <b>MASS MoCA</b>, North Adams, MA, the <b>New Victory Theater</b> in Times Square, New York, <b>National Sawdust</b>, Brooklyn, NY and many others.
<br /><br />
Below is a select list of sound design productions:<br />
<br />
&#9678; <b>Perle Noire: Meditations for Joséphine Baker</b> (Opera directed by <b>Peter Sellars</b> with music composed by <b>Tyshawn Sorey</b>, performed by soprano <b>Julia Bullock</b> and <b>Tyshawn Sorey</b> and the <b>International Contemporary Ensemble</b>) - <i>The Dutch National Opera, Amsterdam, NL</i> 2023<br />
&#9678; <b>Monochromatic Light (Afterlife)</b> (Opera directed by <b>Peter Sellars</b> with music composed by <b>Tyshawn Sorey</b>, performed by bass-baritone <b>Davóne Tines</b> and <b>Tyshawn Sorey</b>) - <i>The Armory, New York, NY</i> 2022<br />
&#9678; <b>Breaking the Waves</b> (Beth Morrison Project opera by Missy Mazzoli with a libretto by Royce Vavrek based on the 1996 film of the same name by Danish auteur Lars von Trier) - <i> Prototype Festival at the Skirball Center for the Performing Arts, New York, NY</i> 2017<br />
&#9678; <b>MVP: A Multimedia Stage Play Inspired by the Music of Melvin Van Peebles</b> (new commission by Lincoln Center for the Performing Arts directed by <b>Mario Van Peebles</b>) - <i>Lincoln Center for the Performing Arts, New York, NY</i> 2024<br />
&#9678; <b>Aging Magician</b> (Beth Morrison Project opera-theater work directed by <b>Julian Crouch</b>, composed by <b>Paola Prestini</b> featuring the <b>Attacca Quartet</b>, the <b>Brooklyn Youth Chorus</b>) - <i>The New Victory Theater, New York, NY / Balboa Theater, San Diego, CA / MASS MoCA, North Adams, MA / The Krannert Center, Tempe, AZ</i> 2017-2022<br />
<br /><br />
Marc also creates sound design for commercials, and mixes audio for ﬁlm and television. He recorded and mixed more than half a dozen movie soundtracks.
<br /><br />
            </p>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 6th slide -->
  <!-- Start 7th slide -->
    <li>
      <div style="background-position: -825px top; background-image: url('https://marcurselli.com/2025_images/Marc_Urselli_1_(photo_by_Trine_Thybo)_[low_res].jpg');">
        <div class="accordion-text CRHA">
          <div class="centered">
            <h2 class="accordion-title">CONTACT</h2>
            <div class="accordion-body">
              <p style="text-align:center">
<a href="#ContactForm">click here</a> and you'll get a reply within 24 hours or less.<br />
<br /><br />
<a href="http://www.instagram.com/marcurselli" target="new"><img width="32px" heigth="32px" src="2025_content/social-media-icons/ig.png" /></a>&nbsp;
<a href="http://www.facebook.com/marcurselli" target="new"><img width="24px" heigth="24px" src="2025_content/social-media-icons/fb.png" /></a>&nbsp;
<a href="http://www.linkedin.com/in/marcurselli" target="new"><img width="24px" heigth="24px" src="2025_content/social-media-icons/li.png" /></a>&nbsp;
<a href="http://www.twitter.com/marcurselli" target="new"><img width="32px" heigth="32px" src="2025_content/social-media-icons/x.png" /></a>&nbsp;
</p>            </div>
          </div>
        </div>
        <div class="accordion-nav">
          <a href="#" onclick="return false;"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
          <a class="disabled" href="#" onclick="return false;"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
        </div>
    </div>
  </li>
  <!-- End 7th slide -->
  </ul>
</div>
<!-- End accordion -->

<p class="CRFAbody">
	<span id="ContactForm">
		<div style="text-align:center;"><a href="#top">top</a>
			<iframe id="ContactFrom" width="100%" height="700px" frameBorder="0" src="2025_content/contact_form.php"'"></iframe>
		</div>
	</span>
</p>

<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>

</body>
</html>