/* ==========================================================================
   EVOUNA PRODUCTION
   Page unique. Structure : navbar, carrousel, artistes, musique, videos,
   newsletter, pied de page.
   ========================================================================== */

:root {
  --dark: #0A0A0A;
  --dark-2: #0F0F0F;
  --dark-3: #161616;
  --black: #000000;
  --white: #FFFFFF;
  --grey: #9A9A9A;
  --grey-2: #6A6A6A;
  --line: rgba(255, 255, 255, .14);

  --orange-a: #ec742c;
  --orange-b: #f08d1d;
  --orange: linear-gradient(90deg, #ec742c 0%, #ec742c 60%, #f08d1d 90%, #f08d1d 100%);

  --placeholder:
    radial-gradient(120% 90% at 70% 15%, rgba(240, 141, 29, .28) 0%, rgba(236, 116, 44, .10) 45%, rgba(10, 10, 10, 0) 72%),
    repeating-linear-gradient(135deg, #131313 0px, #131313 12px, #101010 12px, #101010 24px);

  --container: 1200px;
  --gutter: 20px;
  --radius: 8px;
  --tracking: -0.02em;
  --sep-space: clamp(26px, 4.5vw, 56px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  letter-spacing: var(--tracking);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: var(--tracking);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; letter-spacing: var(--tracking); }

h1, h2, h3, h4 { margin: 0; letter-spacing: var(--tracking); line-height: 1.1; }

::selection { background: var(--orange-a); color: var(--dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-title {
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: var(--tracking);
  margin: 0;
}

/* ---------- Navbar ---------- */

body { padding-top: var(--nav-h, 76px); }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  transform: translateY(0);
  transition: transform .4s var(--ease), box-shadow .3s var(--ease);
}
/* Masquee tant que la page descend, elle revient des que l'on remonte */
.navbar.is-hidden { transform: translateY(-100%); }
.navbar.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, .55); }

section[id], div[id] { scroll-margin-top: calc(var(--nav-h, 76px) + 10px); }
.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo img {
  height: 40px;
  width: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.navbar__nav a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking);
  color: rgba(255, 255, 255, .85);
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.navbar__nav a:hover,
.navbar__nav a.is-active {
  background: var(--orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.navbar__toggle {
  display: none;
  width: 34px; height: 30px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.navbar__toggle span {
  position: absolute;
  left: 5px;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.navbar__toggle span:nth-child(1) { top: 7px; }
.navbar__toggle span:nth-child(2) { top: 14px; }
.navbar__toggle span:nth-child(3) { top: 21px; }
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Carrousel ---------- */

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1905 / 496;
  min-height: 320px;
  overflow: hidden;
  background: var(--dark-3);
}
.carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.carousel__item {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.carousel__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--dark-3);
}
.carousel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, .78) 0%, rgba(10, 10, 10, .35) 45%, rgba(10, 10, 10, .05) 78%);
}

.carousel__caption {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding-left: max(calc((100vw - var(--container)) / 2 + var(--gutter)), var(--gutter));
  padding-right: var(--gutter);
}
.carousel__name {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-size: clamp(28px, 4.6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking);
  padding: 6px 22px 10px;
  border-radius: var(--radius);
}
.carousel__sub {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.8vw, 28px);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}
.carousel__sub span { display: block; }

.carousel__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.carousel__dots button {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel__dots button.is-active { background: var(--orange-b); transform: scale(1.15); }

/* ---------- Artistes ---------- */

.artists { padding: 64px 0 60px; margin-top: var(--sep-space); }

.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 54px;
  justify-items: center;
}
.featured {
  display: block;
  text-align: center;
  max-width: 260px;
}
.featured__photo {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.featured:hover .featured__photo {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px var(--orange-a);
}
.featured__name {
  display: block;
  margin-top: 20px;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  transition: color .2s var(--ease);
}
.featured:hover .featured__name { color: var(--orange-b); }

/* ---------- Musique ---------- */

.music { padding: 60px 0; margin-top: var(--sep-space); }
.music__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 46px;
}
.record { display: block; }
.record__cover {
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.record:hover .record__cover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
}
.record__artist {
  display: block;
  margin-top: 14px;
  line-height: 1.2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.record__title {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}
.record__meta {
  display: block;
  margin-top: 3px;
  line-height: 1.3;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  text-transform: uppercase;
}

/* ---------- Videos ---------- */

.videos { padding: 60px 0; margin-top: var(--sep-space); }

.video-lead {
  margin: 44px 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-align: center;
}
.video-main {
  width: 860px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  display: grid;
  place-items: center;
}
.video-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .35);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.video-main:hover::after { opacity: 1; }
.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px; height: 82px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.video-play svg { width: 34px; height: 34px; fill: currentColor; display: block; }
.video-play--sm { width: 54px; height: 54px; }
.video-play--sm svg { width: 22px; height: 22px; }

.video-main:hover .video-play,
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  filter: brightness(1.08);
}

/* Lecteur YouTube charge au clic */
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-main.is-playing { cursor: default; }
.video-main.is-playing::after { display: none; }
.video-thumb__media.is-playing { position: relative; }

.video-list {
  width: 860px;
  max-width: 100%;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.video-thumb { display: block; }
.video-thumb__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.video-thumb:hover .video-thumb__media {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
}
.video-thumb__media.is-playing,
.video-thumb:hover .video-thumb__media.is-playing { transform: none; }
.video-thumb__title {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  line-height: 1.4;
}
.video-thumb:hover .video-thumb__title { color: var(--orange-b); }

/* ---------- Newsletter ---------- */

.mailing {
  padding: 60px 0 70px;
  margin-top: var(--sep-space);
  text-align: center;
}
.mailing__text {
  max-width: 62ch;
  margin: 22px auto 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}
.mailing__form {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  text-align: left;
}
.field {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 14px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-align: right;
}
.field label b, .mailing__note b { color: var(--orange-b); font-weight: 700; }
.field input,
.field select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 14px;
  padding: 11px 13px;
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--orange-a); }

/* Champ a liste filtrable (pays, ville) */
.combo { position: relative; }
.combo__input {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 14px;
  padding: 11px 13px;
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.combo__input:focus { outline: 0; border-color: var(--orange-a); }
.combo__input::placeholder { color: var(--grey-2); }
.combo__input:disabled { opacity: .55; cursor: not-allowed; }

.combo__list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
  scrollbar-width: thin;
  scrollbar-color: #2f2f2f transparent;
}
.combo__list::-webkit-scrollbar { width: 6px; }
.combo__list::-webkit-scrollbar-thumb { background: #2f2f2f; border-radius: 6px; }
.combo__list[hidden] { display: none; }

.combo__option {
  padding: 9px 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  border-radius: 6px;
  cursor: pointer;
}
.combo__option:hover,
.combo__option.is-active {
  background: rgba(236, 116, 44, .18);
  color: var(--white);
}
.combo__option[aria-selected="true"] { color: var(--orange-b); font-weight: 600; }
.combo__option b { font-weight: 700; color: var(--orange-b); }

.combo__empty {
  padding: 10px 11px;
  font-size: 12px;
  color: var(--grey-2);
}

.mailing__submit { grid-column: 1 / -1; text-align: center; margin-top: 12px; }
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--dark);
  border: 0;
  border-radius: var(--radius);
  padding: 14px 42px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking);
  cursor: pointer;
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-1px);
}

.mailing__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  color: var(--grey-2);
  margin: 6px 0 0;
}
.mailing__note a { color: var(--grey); text-decoration: underline; }
.mailing__ok {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-b);
  margin: 10px 0 0;
}

/* ---------- Pied de page ---------- */

.footer {
  background: var(--black);
  padding: 46px 0 40px;
  text-align: center;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 26px;
}
.footer__socials a {
  width: 20px; height: 20px;
  color: rgba(255, 255, 255, .75);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__socials a:hover { color: var(--orange-b); transform: translateY(-2px); }
.footer__socials svg { width: 100%; height: 100%; fill: currentColor; }

.footer__links {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}
.footer__links a:hover { color: var(--orange-b); }
.footer__links i { font-style: normal; padding: 0 8px; color: var(--grey-2); }

.footer__logo {
  height: 46px;
  width: auto;
  margin: 30px auto 14px;
}
.footer__copy {
  margin: 0;
  font-size: 11px;
  color: var(--grey);
}
.footer__pipe {
  font-style: normal;
  padding: 0 8px;
  color: var(--grey);
}
.footer__credit { color: var(--grey); }
.footer__credit a { color: var(--grey); font-weight: 600; }
.footer__credit a:hover { color: var(--orange-b); }

/* ---------- Pages legales ---------- */

.legal { padding: 70px 0 90px; }
/* Tout le bloc part du meme bord gauche que le logo de la barre */
.legal .section-title { text-align: left; }
.legal__date {
  text-align: left;
  color: var(--grey-2);
  font-size: 12px;
  margin: 16px 0 0;
}
.legal__body {
  max-width: 78ch;
  margin: 50px 0 0;
}
.legal__body h2 {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p,
.legal__body li {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}
.legal__body p { margin: 0 0 14px; }
.legal__body ul { margin: 0 0 18px; padding-left: 20px; }
.legal__body li { margin-bottom: 7px; }
.legal__body a {
  color: var(--orange-b);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__body a:hover { color: var(--white); }
.legal__retour { text-align: left; margin: 50px 0 0; }

/* ---------- Page introuvable ---------- */

.notfound {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 0 100px;
}
.notfound__code {
  margin: 0;
  font-size: clamp(88px, 17vw, 190px);
  font-weight: 800;
  line-height: 1;
  background: var(--orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.notfound__title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 8px;
}
.notfound__text {
  color: var(--grey);
  max-width: 52ch;
  margin: 18px auto 32px;
  font-size: 15px;
}
.notfound__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--white); filter: none; }

.notfound__liens {
  list-style: none;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0 0;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey-2);
}
.notfound__liens a:hover { color: var(--orange-b); }

/* ---------- Blog ---------- */

.blog { padding: 60px 0; margin-top: var(--sep-space); }
.blog--liste, .blog--suite { margin-top: 0; }
.blog--liste { padding: 70px 0 90px; }
.blog--liste .section-title { text-align: left; }
.blog--suite { padding: 20px 0 90px; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 46px;
}
.blog__tout { text-align: center; margin: 46px 0 0; }

.blog-card { display: block; }
.blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.blog-card:hover .blog-card__media {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
}
/* Categorie posee en haut a droite de l'image */
.blog-card__badge,
.article__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--white);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 6px;
}
.blog-card__meta {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey-2);
}
.blog-card__title {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  transition: color .25s var(--ease);
}
.blog-card:hover .blog-card__title { color: var(--orange-b); }
.blog-card__text {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* Diapositive du carrousel qui renvoie vers un article */
.carousel__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--orange-a);
  transition: color .25s var(--ease);
}
.carousel__cta:hover { color: var(--orange-b); }

/* ---------- Page d'article ---------- */

.article { padding: 70px 0 80px; }
.article__fil,
.article__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey-2);
  margin: 0;
}
.article__fil a:hover { color: var(--orange-b); }
.article__fil i,
.article__meta i { font-style: normal; padding: 0 8px; }
.article__meta { color: var(--orange-b); margin-top: 22px; }
.article__titre {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 14px 0 0;
  max-width: 24ch;
}
.article__chapeau {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  max-width: 70ch;
  margin: 20px 0 0;
}
.article__image {
  position: relative;
  margin: 40px 0 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
}
.article__corps { max-width: 78ch; margin: 44px 0 0; }
.article__corps h2 {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 38px 0 12px;
}
.article__corps p,
.article__corps li {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.7;
}
.article__corps p { margin: 0 0 16px; }
.article__corps ul { margin: 0 0 18px; padding-left: 20px; }
.article__corps li { margin-bottom: 8px; }
.article__corps blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--orange-a);
  font-size: 19px;
  font-style: italic;
  color: var(--white);
}
.article__retour { margin: 46px 0 0; }

/* ---------- Retour en haut de page ---------- */

.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 90;
  width: 52px;
  height: 52px;
  padding: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, filter .25s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover { filter: brightness(1.1); transform: translateY(-3px); }
.to-top svg { display: block; }

/* ---------- Apparition au defilement ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablette */
@media (max-width: 991px) {
  .section-title { font-size: 38px; }

  .navbar__inner { flex-wrap: wrap; padding: 14px var(--gutter); }
  .navbar__toggle { display: block; }
  .navbar__nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid transparent;
    margin-top: 0;
    padding-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .42s var(--ease), opacity .28s var(--ease), margin-top .42s var(--ease), padding-top .42s var(--ease), border-color .3s var(--ease);
  }
  .navbar__nav.is-open {
    max-height: 340px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 6px;
    border-top-color: var(--line);
  }
  .navbar__nav a {
    padding: 14px 2px;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
  }

  .carousel { aspect-ratio: 16 / 10; }

  .blog__grid { grid-template-columns: 1fr; gap: 46px; }
  .roster { gap: 26px; margin-top: 40px; }
  .featured__photo { width: 190px; height: 190px; }
  .featured__name { font-size: 20px; margin-top: 14px; }

  .music__grid { gap: 20px; }
  .video-list { gap: 18px; }
  .mailing__form { grid-template-columns: 1fr; gap: 14px; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --gutter: 18px; }

  .section-title { font-size: 30px; }

  .navbar__logo img { height: 34px; }

  .carousel { aspect-ratio: 3 / 4; min-height: 420px; }
  .carousel__media { background-position: center 18%; }
  .carousel__shade {
    background: linear-gradient(to top, rgba(10, 10, 10, .95) 8%, rgba(10, 10, 10, .45) 48%, rgba(10, 10, 10, .25) 100%);
  }
  .carousel__caption {
    top: auto;
    bottom: 74px;
    transform: none;
    width: 100%;
  }
  .carousel__name { font-size: 34px; padding: 5px 14px 8px; }
  .carousel__sub { font-size: 15px; margin-top: 10px; }
  .carousel__dots { bottom: 34px; }

  .artists { padding: 44px 0 40px; }
  .roster {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 32px;
  }
  .featured { max-width: 100%; }
  .featured__photo { width: 170px; height: 170px; }

  .music, .videos { padding: 44px 0; }
  .music__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 32px;
  }
  .record__cover { max-width: 320px; margin: 0 auto; }
  .record__artist, .record__title, .record__meta { text-align: center; }

  /* Le titre de la video principale passe sous l'image, cale a gauche,
     exactement comme les titres des deux vignettes. */
  [data-video-main] { display: flex; flex-direction: column; }
  [data-video-main] .video-main { order: 1; }
  .video-lead {
    order: 2;
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    text-align: left;
    color: rgba(255, 255, 255, .88);
    line-height: 1.4;
  }
  .video-list { grid-template-columns: 1fr; gap: 24px; margin-top: 26px; }

  .mailing { padding: 44px 0 50px; }
  .mailing__text { font-size: 13px; margin-bottom: 26px; }
  .field { grid-template-columns: 1fr; gap: 6px; }
  .field label { text-align: left; }
  .field input, .combo__input { font-size: 16px; }
  .combo__list { max-height: 210px; }
  .btn { width: 100%; padding: 15px 20px; }

  .footer { padding: 36px 0 32px; }
  .footer__socials { gap: 22px; }
  .footer__links { line-height: 2.2; }
  .footer__links i { padding: 0 6px; }
  .footer__logo { height: 38px; margin-top: 24px; }
  .blog { padding: 44px 0; }
  .blog--liste { padding: 44px 0 60px; }
  .blog__grid { grid-template-columns: 1fr; gap: 46px; margin-top: 32px; }
  .article { padding: 40px 0 60px; }
  .article__chapeau { font-size: 16px; }
  .article__corps { margin-top: 32px; }
  .article__corps p, .article__corps li { font-size: 15px; }
  .article__corps blockquote { font-size: 17px; }
  .legal { padding: 44px 0 60px; }
  .legal__body { margin-top: 32px; }
  .legal__body h2 { font-size: 15px; margin: 28px 0 10px; }
  .legal__body p, .legal__body li { font-size: 14px; }
  .notfound { padding: 60px 0 70px; }
  .notfound__liens { gap: 16px; margin-top: 36px; }
  .video-play { width: 64px; height: 64px; }
  .video-play svg { width: 26px; height: 26px; }
  .video-play--sm { width: 54px; height: 54px; }
  .to-top { width: 46px; height: 46px; padding: 12px; }
  .footer__pipe { display: none; }
  .footer__credit { display: block; margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }

  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
