* {
  margin: 0;
  padding: 0;
}

:root {
  --margin-xl: 96px 12.5%;
  --margin-m: 56px 40px;
  --margin-s: 48px 8px;
  --padding: 0 40px;
  --padding-s: 0 16px;
  --padding-right: 40px;
  --padding-right-s: 16px;
  --gap-xl: 160px;
  --gap-m: ;
  --height-texture: 12px;
  --height-texture-s: 8px;
  --color-black: #080605;
  --color-white: #FEFCFB;
  --color-grey: #988C81;
  --color-light: #FDF9F6;
  --color-beige: #FBF5EF;
  --color-darkbrown: #44180D;
  --color-brown: #6A1410;
  --color-darkorange: #CC6228;
  --color-orange: #D79B5B;
  --color-or: #DABA68;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-serif: "Supernova", serif;
  --font-family-soustitre: "Gambarino", serif;
  --font-family-text: "Fraunces", serif;
  --font-family-sans: "CabinetGrotesk", sans-serif;
  --font-family-mono: "SFMono-Regular", monospace;
}

@font-face {
    font-family: 'Supernova';
    src: url('fonts/Supernova-Bold.otf') format('opentype'),
        url('fonts/Supernova-Bold.woff2') format('woff2'),
        url('fonts/Supernova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Supernova';
    src: url('fonts/Supernova-Light.otf') format('opentype'),
        url('fonts/Supernova-Light.woff2') format('woff2'),
        url('fonts/Supernova-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Supernova';
    src: url('fonts/Supernova-Regular.otf') format('opentype'),
        url('fonts/Supernova-Regular.woff2') format('woff2'),
        url('fonts/Supernova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Supernova';
    src: url('fonts/Supernova-RegularItalic.otf') format('opentype'),
        url('fonts/Supernova-RegularItalic.woff2') format('woff2'),
        url('fonts/Supernova-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Gambarino';
    src: url('fonts/Gambarino-Regular.woff2') format('woff2'),
         url('fonts/Gambarino-Regular.woff') format('woff'),
         url('fonts/Gambarino-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'CabinetGrotesk';
  src: url('fonts/CabinetGrotesk-Variable.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Variable.woff') format('woff'),
       url('fonts/CabinetGrotesk-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-Variable.woff2') format('woff2'),
       url('fonts/Fraunces-Variable.woff') format('woff'),
       url('fonts/Fraunces-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  font-variation-settings: "WONK" 0;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-Italic-Variable.woff2') format('woff2'),
       url('fonts/Fraunces-Italic-Variable.woff') format('woff'),
       url('fonts/Fraunces-Italic-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  font-variation-settings: "WONK" 0;
}

body, html {
}

html {
  font-family: var(--font-family-serif);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 18px;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: lightgrey transparent;
  scrollbar-width: thin;
}
img {
  width: 100%;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.ligne {
  display: flex;
  width: 100%;
}
.ligne svg {
  width: 100%;
  height: 3px;
}
.ligne svg path, .vertical svg path {
  fill: var(--color-darkorange);
}
.ligne-grid {
  width: 67%;
  grid-area: ligne;
}

.ligne-lien {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.ligne-lien svg {
  display: flex;
  position: absolute;
}
.ligne-lien path {
  fill: transparent !important;
  transition: fill 0.2s ease;
}
.menu:hover .ligne-lien path {
  fill: var(--color-darkorange) !important;
}
.vertical {
  width: 40px;
  padding-top: 40px;
}
.vertical svg {
  width: 3px;
  height: 100%;
}
.padding {
  padding: 0 32px;
}

.bouton {
  color: var(--color-darkorange);
  width: fit-content;
  height: fit-content;
  padding: 6px 12px 8px;
  border: 1px solid var(--color-darkorange);
  border-radius: 200px;
  font-size: 1.33rem;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.bouton:hover {
  background: var(--color-darkorange);
  color: var(--color-light);
}

.header {
  font-size: 1.33rem;
  text-transform: lowercase;
  width: calc(100% - 80px);
  padding: 40px 40px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  display: flex;
  z-index: 100;
  color: var(--color-orange);
}

.menu-desktop {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.header .menu-toggle-text,
.header .logo-mobile,
.header .lang-mobile {
  display: none;
}
.menu-modal {
  display: none;
}

.logo svg {
  width: 320px;
  height: 120px;
}
.logo svg path {
  fill: var(--color-orange);
  transition: fill 0.2s ease;
}
.logo-emplacement:hover path {
  fill: var(--color-darkorange);
}

.header a {
  position: relative;
  display: block;
  height: fit-content;
  transition: color 0.2s ease;
}
.header a[aria-current] .ligne-lien path {
  fill: var(--color-orange) !important
}
.is-compact a[aria-current] .ligne-lien path {
  fill: var(--color-darkorange) !important
}
.languages a[aria-current] {
  font-weight: bold;
}

.header a:hover {
  color: var(--color-darkorange);
}
.header a:hover .ligne-lien path {
  fill: var(--color-darkorange) !important
}
.is-compact a:hover .ligne-lien path {
  fill: var(--color-darkorange) !important
}

.languages {
  text-transform: uppercase;
  width: 72px;
  display: flex;
  flex-direction: row-reverse;
}
.languages li {
  display: none;
  /*display: flex;*/
  padding: 0px 4px 0px 0px;
}
.languages li:first-child::before {
  content: "/";
  padding-right: 4px;
}

/*logo animation*/
.logo-emplacement {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 120px;
}
.logo-emplacement .logo,
.logo-emplacement .logo-horizontal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}
.header .logo-horizontal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.logo-horizontal svg path {
  fill: var(--color-darkorange);
}
.header .logo {
  opacity: 1;
  visibility: visible;
}
.header.is-compact .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header.is-compact .logo-horizontal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header.is-compact .logo-emplacement {
  height: 49px;
}
.header.is-compact {
  background: linear-gradient(180deg, var(--color-white) 70%, var(--color-light) 100%);
  color: var(--color-darkorange);
  box-shadow: 0px 8px 2px var(--color-light);
}

.composition {
  margin: var(--margin-xl);
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
h1 {
  font-size: 112px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: normal;
}
h2 {
  font-family: var(--font-family-soustitre);
  font-size: 64px;
  line-height: 1.3;
  font-weight: normal;
}
h3 {
  font-family: var(--font-family-soustitre);
  font-size: 2.22rem;
  font-weight: normal;
  text-transform: lowercase;
  color: var(--color-darkorange);
}
h4 {
  font-family: var(--font-family-soustitre);
  font-size: 1.33rem;
  font-weight: normal;
  text-transform: lowercase;
}

.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}

hr {
  margin: 32px 0;
  border: 0;
  background: var(--color-orange);
  height: 1px;
  width: 32px;
}

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

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.filtre-hover {
  opacity: 0;
  position: absolute;
  aspect-ratio: 16/10;
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  background-color: var(--color-darkorange);
  mix-blend-mode: screen;
}
li:hover .filtre-hover {
  opacity: 1;
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  position: relative;
  padding: 40px 40px 0;
}
.footer-grid {
  display: grid;
  justify-content: space-between;
  font-size: 1.33rem;
  grid-template-columns: repeat(3, auto);
  margin: var(--margin-xl);
}
.footer-contact-top {
  font-weight: bold;
}
.footer-boutons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-texture {
  margin: 0 -40px;
  height: fit-content;
  width: calc(100% + 80px);
}
.footer-texture img {
  margin-bottom: -6px;
  object-fit: cover;
  height: 250px;
}
.menu-footer {
  padding: 0;
  color: var(--color-orange);
  z-index: 800;
  position: absolute;
  bottom: 48px;
  display: flex;
  justify-content: space-between;
  top: auto;
  left: 40px;
  right: 40px;
}
.album-reco {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
  margin: 8px 0;
}
.recommended-item {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: color 0.2s ease;
}
.recommended-item:hover {
  color: var(--color-darkorange);
}
.recommended-item:hover .filtre-hover {
  opacity: 1;
}
.recommended-item:hover path {
  fill: var(--color-darkorange);
}
.recommended-item img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
}
.recommended-item .placeholder {
  position: relative;
  font-family: var(--font-family-text);
  border-radius: 4px;
  aspect-ratio: 16/10;
  background: var(--color-beige);
  display: flex;
  font-size: 1.11rem;
  line-height: 1.5;
  overflow: hidden;
}
.filtre-placeholder {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(180deg,rgba(251, 245, 239, 0) 0%,
    rgba(251, 245, 239, 1) 92%);
}
.placeholder p {
  margin: 16px 24px;
}
.recommended-item figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.recommended-item svg path {
  fill: var(--color-white);
  transition: fill 0.2s ease;
}
.recommended-titre {
  font-weight: normal;
  text-transform: uppercase;
}

.album-ligne svg path {
  fill: var(--color-light);
  transition: fill .2s ease;
}
.home-grid li:hover .album-ligne path {
  fill: var(--color-darkorange);
}

.home-publications-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 48px;
}
.notes-groupe .home-publications-grid {
  margin-top: 32px;
}
.home-publications-grid li:hover .album-ligne path {
  fill: var(--color-darkorange);
}
.home-publications-column {
  max-height: ;
}

.note-excerpt {
  transition: color .2s ease;
}
.note-excerpt a {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(1.74rem * 14);
}
.note-excerpt:hover {
  color: var(--color-darkorange);
}
.note-excerpt .ligne {
  margin: 2px 0 8px;
}
.note-excerpt-title {
  font-family: var(--font-family-serif);
  text-transform: initial;
  font-size: 1.78rem;
  line-height: 1.3;
  font-weight: normal;
  font-style: italic;
}
.note-excerpt-title span {
  font-style: normal;
}
.note-excerpt-text {
  font-family: var(--font-family-text);
  font-size: 1.33rem;
  line-height: 1.5;
  font-weight: 200;
  height: 100%;
  overflow: hidden;
}
.filtre-text {
  height: 200px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg,rgba(254, 252, 251, 0) 0%, rgba(254, 252, 251, 1) 90%);
}

.top-default {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 112px;
  margin: 0 40px;
}
.vertical-default {
  padding-top: 0;
  width: fit-content;
}

.top-in {
  display: flex;
  gap: 32px;
  width: 100%;
}
.top-texture {
  display: flex;
  width: 100%;
  margin: 128px 0 80px;
  justify-content: center;
}
.top-texture img {
  height: 100%;
  width: 66%;
  object-fit: contain;
}

.notes-groupe {
  display: flex;
  gap: 32px;
}
.notes-groupe .vertical-default {
  padding-top: 40px;
}
.ligne-default {
  width: 66%;
  margin-bottom: 16px;
}

.intro-article {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  min-height: 448px;
}
.intro-article .caption-title {
  max-width: 1600px;
  text-transform: none;
  color: var(--color-darkorange);
  font-style: italic;
  padding-top: 112px;
}
.intro-article .caption-title span {
  font-style: normal;
}

.grid-article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px 80px;
}
.grid-article a {
  height: fit-content;
  width: 100%;
}
.grid-article img {
  object-fit: cover;
}
.ligne-article {
  grid-column: 2;
}
/*.ligne-article svg, .note-article {
  padding-right: 40px;
}*/

.btn-article {
  width: fit-content;
  display: flex;
  gap: 4px;
  font-family: var(--font-family-serif);
  font-size: 1.33rem;
  color: var(--color-darkorange);
  text-decoration: none !important;
  font-weight: 300;
}
.btn-article span {
  display: block;
  width: 28px;
  transition: transform .2s ease;
}
.btn-article:hover span {
  transform: translateX(6px);
}
.reco-article .ligne {
  justify-content: right;
}
.reco-ligne-article svg {
  width: calc(66% - 40px);
}


.note-article, .album-text {
  font-size: 1.33rem;
  font-family: var(--font-family-text);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1016px;
}
.note-article h1, .album-text h1 {
  text-transform: initial;
  line-height: 1.5;
  font-family: var(--font-family-soustitre);
  font-size: 2.22rem;
  color: var(--color-text);
}
.note-article p + .note-article h1, .album-text p + .album-text h1 {
  margin-top: 2.22rem;
}
.note-article h2, .album-text h2 {
  text-transform: initial;
  line-height: 1.5;
  font-family: var(--font-family-soustitre);
  font-size: 1.78rem;
  color: var(--color-text);
}
.note-article p + .note-article h2, .album-text p + .album-text h2 {
  margin-top: 1.78rem;
}
.note-article h3, .album-text h3 {
  text-transform: initial;
  line-height: 1.5;
  font-family: var(--font-family-soustitre);
  font-size: 1.33rem;
  color: var(--color-text);
}
.note-article p + .note-article h3, .album-text p + .album-text h3 {
  margin-top: 1.33rem;
}
.note-article h4, .album-text h4 {
  font-family: var(--font-family-serif);
  line-height: 1.5;
  font-size: 2.22rem;
  text-transform: none;
  color: var(--color-text);
}
.note-article p + .note-article h4, .album-text p + .album-text h4 {
  margin-top: 2.22rem;
}
.note-article h5, .album-text h5 {
  font-family: var(--font-family-serif);
  line-height: 1.5;
  font-size: 1.78rem;
  text-transform: none;
  color: var(--color-text);
}
.note-article p + .note-article h5, .album-text p + .album-text h5 {
  margin-top: 1.78rem;
}
.note-article h6, .album-text h6 {
  font-family: var(--font-family-serif);
  line-height: 1.5;
  font-size: 1.33rem;
  text-transform: none;
  color: var(--color-text);
}
.note-article p + .note-article h6, .album-text p + .album-text h6 {
  margin-top: 1.33rem;
}
.note-article strong, .album-text strong {
  font-weight: 450;
}
.note-article a, .album-text a {
  font-family: var(--font-family-text);
  color: var(--color-darkorange);
  text-decoration: underline;
}
.note-article a:hover, .album-text a:hover {
  font-family: var(--font-family-text);
  text-decoration: none;
}
.note-article blockquote, .album-text blockquote {
  font-family: var(--font-family-serif);
  font-weight: normal;
  font-size: 1.56rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.note-article blockquote footer, .album-text blockquote footer {
  margin-top: 12px;
  font-weight: normal;
}

.lightbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-wrapper img {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-nav {
  position: absolute;
  top: 102%;
  transform: translateY(-50%);
  color: var(--color-white);
  border: none;
  font-size: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}
.lightbox-nav:hover {
  color: var(--color-darkorange);
}
.lightbox-nav.prev { left: calc(50% - 48px); }
.lightbox-nav.next { right: calc(50% - 48px); }

@media screen and (max-width: 1600px) {
  html {
  }
  h1 {
    font-size: 96px;
  }
  h2 {
    font-size: 48px;
  }
  .composition {
    margin: var(--margin-m);
    gap: 104px;
  }
  .logo-emplacement {
    height: 80px;
  }
  .logo svg {
    height: 80px;
  }
  .note-excerpt-title {
    font-size: 1.56rem;
  }
  .note-excerpt-text {
    font-size: 1.11rem;
  }

  .recommended-item .placeholder {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1020px) {
  html {
  }
  h1 {
    font-size: 2.22rem;
    line-height: 1.1;
  }
  h2 {
    margin-top: 4px;
    font-size: 1.78rem;
  }
  h3 {
    font-size: 1.56rem;
  }
  h4 {
    font-size: 1.11rem;
  }
  .ligne-grid {
    width: 100%;
  }
  .bouton {
    font-size: 1rem;
    grid-column: span 2;
    justify-self: center;
  }
  .padding {
    padding: 0 16px;
  }

  .logo-emplacement {
    height: 69px;
    width: 171px;
  }
  .logo svg {
    height: 64px;
    width: 171px;
  }
  .logo-horizontal {
    margin-top: -2px;
  }
  .logo-horizontal svg {
    width: 200px;
  }
  .header {
    font-size: 1rem;
    display: flex;
    align-items: normal;
    gap: 12px;
    padding: 24px 20px 0px;
    width: auto;
    justify-content: space-between;
  }
  .header.is-compact .logo-emplacement {
    height: 40px;
  }

  .menu-desktop {
    display: none;
  }

  .header .logo-mobile {
    display: flex;
  }
  .header .lang-mobile {
    display: flex;
    height: fit-content;
  }
  .header .menu-toggle-text {
    height: fit-content;
    display: block;
    text-transform: lowercase;
    text-align: left;
  }
  .header.is-compact .logo.logo-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }
  .header .logo.logo-modal path {
    fill: var(--color-darkorange);
  }
  .place-modal {
    width: 58px;
  }
  .menu-modal {
    color: var(--color-darkorange);
    padding: 24px 0 24px;
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 5, 0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1050;
    overflow: auto;
  }
  .menu-layout {
   display: flex;
   flex-direction: column;
   gap: 24px;
   align-items: center;"
  }
  .menu-links {
    align-items: center;
    font-size: 1.33rem;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .menu-links-add {
    font-size: 1rem;
    gap: 12px;
  }
  .header.menu-open .menu-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-modal .logo-emplacement {
    display: none;
  }
  .menu-modal .languages {
    display: none;
  }
  .menu-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-darkorange);
    border-radius: 200px;
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 300;
    transition: color 0.2s ease;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .header a[aria-current] .ligne-lien path {
  fill: var(--color-darkorange) !important;
  }

  .vertical {
  width: 18px;
  padding-top: 24px;
  }

  .composition {
    margin: var(--margin-s);
    gap: 80px;
  }

  .home-publications-grid {
    margin-top: 0;
  }
  .note-excerpt a {
    max-height: calc(1.74rem * 10);
  }
  .note-excerpt-title {
    font-size: 1.33rem;
  }
  .note-excerpt-text {
    font-size: 1.11rem;
  }

  .recommended-grid {
    grid-template-columns: 1fr;
  }
  .recommended-item .placeholder {
    font-size: 1rem;
  }

  .note-article, .album-text {
  font-size: 1rem;
  }
  .note-article h1, .album-text h1 {
    line-height: 1.5;
    font-size: 1.56rem;
  }
  .note-article p + .note-article h1, .album-text p + .album-text h1 {
    margin-top: 1.56rem;
  }
  .note-article h2, .album-text h2 {
    line-height: 1.5;
    font-size: 1.33rem;
  }
  .note-article p + .note-article h2, .album-text p + .album-text h2 {
    margin-top: 1.33rem;
  }
  .note-article h3, .album-text h3 {
    line-height: 1.5;
    font-size: 1rem;
  }
  .note-article p + .note-article h3, .album-text p + .album-text h3 {
    margin-top: 1rem;
  }
  .note-article h4, .album-text h4 {
  line-height: 1.5;
  font-size: 1.56rem;
  }
  .note-article p + .note-article h4, .album-text p + .album-text h4 {
    margin-top: 1.56rem;
  }
  .note-article h5, .album-text h5 {
    line-height: 1.5;
    font-size: 1.33rem;
  }
  .note-article p + .note-article h5, .album-text p + .album-text h5 {
    margin-top: 1.33rem;
  }
  .note-article h6, .album-text h6 {
    line-height: 1.5;
    font-size: 1rem;
  }
  .note-article p + .note-article h6, .album-text p + .album-text h6 {
    margin-top: 1rem;
  }
  .note-article blockquote, .album-text blockquote {
    font-size: 1.11rem;
    line-height: 1.5;
  }

  .home-publications-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .top-default {
    margin: 0 0;
  }
  .top-default .vertical {
    display: none;
  }
  .top-texture {
    margin: 64px 0 48px;
  }
  .top-texture img {
    height: 100px;
    width: 100%;
    object-fit: cover;
  }
  .album-intro {
    margin: 0 24px;
  }
  .notes-groupe {
    gap: 13px;
    padding-right: var(--padding-right-s);
  }
  .ligne-default {
    margin-bottom: 8px;
    width: 100%;
  }
  .notes-groupe .vertical-default {
    padding-top: 24px;
  }

  .intro-article {
    min-height: 224px;
  }
  .grid-article {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 16px;
    gap: 32px;
  }
  .ligne-article {
    grid-column: 1;
  }
  .btn-article {
    font-size: 1.11rem;
  }
  .reco-ligne-article svg {
    width: 100%;
  }
  .album-reco {
    margin: 0 16px;
  }
  .menu-footer {
    display: none;
  }
  .footer {
    padding: 0 24px 0;
  }
  .footer-grid {
    margin: 32px auto 64px;
    font-size: 1.33rem;
    grid-template-columns: repeat(1, auto);
    text-align: center;
    justify-content: center;
    gap: 32px;
  }
  .footer-texture {
    margin: 0 -24px;
    width: calc(100% + 48px);
    position: relative;
  }
  .footer-texture img {
    height: 80px;
  }

  .lightbox-nav {
    padding: 16px 8px;
    position: relative;
    transform: none;
    left: 0 !important;
    right: 0 !important;
    top: unset;
  }
}
