@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  text-decoration: none;
}

/* ============================= */
/* 1. VARIABLES (Tes valeurs)    */
/* ============================= */
/* ============================= */
/* 2. MIXIN & FONT-FACE          */
/* ============================= */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ============================= */
/* 3. STYLES GLOBAUX             */
/* ============================= */
body {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #2d2d2a;
}
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
}

/* ============================= */
/* 4. TITRES                     */
/* ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

h2 {
  font-size: 50px;
}
@media (max-width: 1280px) {
  h2 {
    font-size: 32px;
  }
}

.big-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 86px;
}
@media (max-width: 768px) {
  .big-link {
    font-size: 38px;
  }
}

.nav {
  font-family: "IBM Plex Mono", monospace;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
  background-color: #f7f7f5;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .nav {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 0;
  }
}
@media (min-width: 768px) {
  .nav__burger-li {
    display: none;
  }
}
.nav__list {
  display: flex;
  padding: 20px;
  list-style: none;
  margin: 0;
}
@media (min-width: 768px) {
  .nav__list {
    justify-content: space-between;
  }
}
.nav__list-container {
  border-left: solid 1px #2d2d2a;
  border-right: solid 1px #2d2d2a;
  grid-column: 2/12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .nav__list-container {
    grid-column: 1/6;
    border-left: none;
    border-right: none;
  }
}
.nav__list--logo {
  padding: 20px;
}
.nav__list--menu {
  gap: 40px;
  list-style: none;
  margin: 0;
}
@media (max-width: 767px) {
  .nav__list--menu {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f7f7f5;
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav__list--menu.is-open {
    transform: translateX(0);
  }
}
.nav__el {
  list-style: none;
  display: flex;
}
@media (max-width: 767px) {
  .nav__el {
    display: flex;
    justify-content: center;
  }
  .nav__list--menu .nav__el {
    position: relative;
  }
  .nav__list--menu .nav__el::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #2d2d2a;
    transition: width 0.4s ease;
  }
  .nav__list--menu.is-open .nav__el::after {
    width: 100%;
  }
  .nav__list--menu.is-open .nav__el .nav__link {
    opacity: 1;
    transform: translateX(0);
  }
  .nav__list--menu.is-open .nav__el:nth-child(1)::after {
    transition-delay: 0.2s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(1) .nav__link {
    transition-delay: 0.2s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(2)::after {
    transition-delay: 0.4s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(2) .nav__link {
    transition-delay: 0.4s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(3)::after {
    transition-delay: 0.6s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(3) .nav__link {
    transition-delay: 0.6s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(4)::after {
    transition-delay: 0.8s;
  }
  .nav__list--menu.is-open .nav__el:nth-child(4) .nav__link {
    transition-delay: 0.8s;
  }
}
.nav__link {
  color: #2d2d2a;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .nav__link {
    position: relative;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .nav__list--menu .nav__link {
    display: block;
    padding: 24px 20px;
    font-size: 18px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow: visible;
  }
}

.burger {
  display: none;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  color: #2d2d2a;
}
@media (max-width: 767px) {
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.burger__icon {
  display: block;
}

.burger__line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.burger.is-open .burger__line--top {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open .burger__line--mid {
  opacity: 0;
  transform: scaleX(0);
}
.burger.is-open .burger__line--bot {
  transform: translateY(-7px) rotate(-45deg);
}

.footer {
  background-color: #2d2d2a;
  color: #f7f7f5;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.footer__list {
  display: flex;
  flex-direction: column;
}
.footer__list-first {
  grid-column: 1/5;
  border-right: solid 1px #f7f7f5;
  padding-top: 24px;
  padding-left: 20px;
  padding-bottom: 40px;
}
.footer__list-third {
  padding-top: 24px;
  padding-left: 20px;
  padding-bottom: 40px;
  grid-column: 9/13;
  border-left: solid 1px #f7f7f5;
}
.footer__group-list {
  padding-top: 24px;
  padding-left: 20px;
  grid-column: 5/9;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
}
.footer__el {
  margin-top: 4px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}
.footer__el:first-child {
  margin-top: 0;
}
.footer__el:nth-child(2) {
  margin-top: 0;
}
.footer__el-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer__link {
  color: #f7f7f5;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer__list-first {
    grid-column: 1/4;
    padding-left: 16px;
  }
  .footer__group-list {
    grid-column: 4/9;
    padding-left: 16px;
    gap: 20px;
  }
  .footer__list-third {
    grid-column: 9/13;
    padding-left: 16px;
  }
}
@media (max-width: 1024px) {
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .footer__list {
    border-right: none;
  }
  .footer__list-first {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    border-bottom: solid 1px #f7f7f5;
    padding: 24px 20px;
  }
  .footer__list-third {
    grid-column: 1;
    grid-row: 3;
    border-left: none;
    border-bottom: none;
    padding: 24px 20px 40px 20px;
  }
  .footer__group-list {
    grid-column: 1;
    grid-row: 2;
    padding: 24px 20px;
    gap: 24px;
    border-bottom: solid 1px #f7f7f5;
  }
  .footer__el-title {
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .footer__list-first, .footer__list-third {
    padding: 20px 16px;
  }
  .footer__group-list {
    padding: 20px 16px;
    gap: 20px;
  }
  .footer__el {
    margin-top: 3px;
    font-size: 11px;
  }
  .footer__el-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .footer__link {
    font-size: 11px;
  }
}

.cursor {
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .cursor {
    display: block;
  }
}
.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.cursor__ball svg {
  display: block;
}
.cursor__ball circle {
  fill: #f7f7f5;
}
.cursor__ball--big {
  width: 100px;
  height: 100px;
}
.cursor__ball--small {
  width: 10px;
  height: 10px;
}

html, body {
  cursor: none !important;
}

a, button, .glitch-link, .projects__link, input, textarea, .burger {
  cursor: none !important;
}

@media (max-width: 1023px) {
  html, body, a, button, input, textarea, .burger {
    cursor: auto !important;
  }
}
.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2d2d2a;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: 16px;
  max-width: 100%;
}
.btn__send {
  align-self: flex-end;
}
.btn__project {
  padding-bottom: 20px;
}
.btn__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #2d2d2a;
}
.btn__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #2d2d2a;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn.is-hovered .btn__inner::after {
  transform: scaleX(1);
}
.btn.is-leaving .btn__inner::after {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.btn__sizer {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  padding: 13px 20px;
}
.btn__label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
}
.btn__label::after {
  content: " /";
  opacity: 0.5;
}
.btn__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  flex-shrink: 0;
}
.btn.is-hovered .btn__label, .btn.is-hovered .btn__icon {
  color: #f7f7f5;
}
.btn svg {
  display: block;
}

.email-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  background-color: #2d2d2a;
  color: #f7f7f5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.25rem;
  max-width: 80vw;
  z-index: 500;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
  border: solid 1px #feff66;
}
@media (max-width: 767px) {
  .email-toast {
    white-space: normal;
    text-align: center;
    max-width: 80vw;
  }
}
.email-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.accueil {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .accueil {
    grid-template-columns: repeat(12, 1fr);
  }
}
.accueil__title_container {
  grid-column: 1/6;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .accueil__title_container {
    grid-template-columns: repeat(12, 1fr);
    grid-column: 1/13;
  }
}
.accueil__big-title {
  font-family: "Space Grotesk", sans-serif;
  grid-column: 1/6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #c399ff;
  padding: 16px 20px;
  border-left: none;
  border-right: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .accueil__big-title {
    grid-column: 2/12;
    padding: 32px 20px 40px 20px;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
  }
}
@media (min-width: 1024px) {
  .accueil__big-title {
    grid-column: 2/12;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
    padding: 40px 20px 48px 20px;
  }
}
.accueil__big-title img {
  max-width: 100%;
  height: auto;
}
.accueil__subtitle {
  grid-row: 2;
  grid-column: 1/6;
  border-bottom: solid 1px #2d2d2a;
  font-size: 32px;
}
@media (min-width: 768px) {
  .accueil__subtitle {
    grid-column: 1/1;
    border-bottom: none;
  }
}
.accueil__description {
  background-color: #feff66;
  grid-column: 1/6;
  grid-row: 4;
  border-left: none;
  border-right: none;
  padding: 24px 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .accueil__description {
    grid-column: 2/12;
    grid-row: 3;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
    padding: 28px 20px;
  }
}
@media (min-width: 1024px) {
  .accueil__description {
    grid-column: 2/7;
    grid-row: 2;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
    padding: 32px 20px;
  }
}
.accueil__description p + p {
  margin-top: 20px;
}
.accueil__img {
  background-image: url("../images/accueil_mb.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-column: 1/6;
  grid-row: 3;
  max-width: 100%;
  min-height: 280px;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .accueil__img {
    grid-column: 2/12;
    grid-row: 2;
    min-height: 300px;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
  }
}
@media (min-width: 1024px) {
  .accueil__img {
    grid-column: 7/12;
    grid-row: 2;
    min-height: 530px;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
    border-bottom: none;
  }
}

.subtitle {
  padding: 12px 16px;
  text-align: center;
  grid-row: 2;
}
@media (min-width: 768px) {
  .subtitle {
    padding: initial;
    text-align: initial;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    grid-row: 2/4;
  }
}

.medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .medium {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .medium {
    margin-bottom: 20px;
  }
}

.projects {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projects {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projects__subtitle {
  grid-row: 1;
  grid-column: 1/6;
  border-bottom: 1px solid #2d2d2a;
}
@media (min-width: 768px) {
  .projects__subtitle {
    grid-column: 1/2;
    border-bottom: none;
  }
}
.projects__list {
  grid-column: 1/6;
  border-left: none;
  border-right: none;
}
@media (min-width: 768px) {
  .projects__list {
    grid-column: 2/12;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
  }
}
.projects__el {
  position: relative;
  border-bottom: solid 1px #2d2d2a;
}
.projects__el:last-child {
  border-bottom: none;
}
.projects {
  /* ========================= */
  /* ANIMATION HOVER FOND + TEXTE */
  /* ========================= */
}
.projects__link {
  color: #2d2d2a;
  display: block;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease;
}
.projects__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #dc2011;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}
.projects__link:hover::before {
  transition-delay: 0.125s;
  transform: translateY(0);
}
.projects__link > * {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.projects__titre {
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .projects__titre {
    width: auto;
    margin-bottom: 0;
  }
}
.projects__description {
  display: none;
}
@media (min-width: 1280px) {
  .projects__description {
    display: block;
  }
}
.projects__cta {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
}
.projects__cta::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/link_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .projects__cta::before {
    width: 50px;
    height: 50px;
  }
}

/* ========================= */
/* ALIGNEMENT DES COLONNES */
/* ========================= */
.projects__list .link__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  text-wrap: nowrap;
}
@media (min-width: 768px) {
  .projects__list .link__list {
    display: grid;
    grid-template-columns: 3fr 3fr 1fr 1fr;
    align-items: center;
    flex-direction: unset;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .projects__list .link__list {
    grid-template-columns: 3fr 2fr 3fr 1fr 1fr;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .projects__list .link__list-information-wrapper {
    display: contents;
  }
}
.projects__list .link__list-information {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
@media (min-width: 768px) {
  .projects__list .link__list-information {
    display: contents;
  }
}
.projects__list .link__el {
  padding: 0;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .projects__list .link__el {
    padding: 32px 0px;
  }
  .projects__list .link__el:first-child {
    padding-left: 20px;
  }
}

/* ========================= */
/* COULEURS SPECIFIQUES DES TROIS PREMIERS LIENS */
/* ========================= */
.projects__list .projects__el:nth-child(1) .projects__link::before {
  background-color: #ff6700;
}

.projects__list .projects__el:nth-child(2) .projects__link::before {
  background-color: #dcff99;
}

.projects__list .projects__el:nth-child(3) .projects__link::before {
  background-color: #33a1ff;
}

.photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: solid 1px #2d2d2a;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (min-width: 768px) {
  .photos {
    grid-template-columns: repeat(12, 1fr);
  }
}
.photos__subtitle {
  border-right: solid 1px #2d2d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  grid-column: 1/6;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .photos__subtitle {
    grid-row: auto;
    grid-column: auto;
    border: none;
  }
}
.photos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 155px);
  grid-column: 1/6;
  grid-row: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 32px 20px 20px 20px;
  border-left: solid 1px #2d2d2a;
  border-right: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .photos__grid {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, 320px);
    grid-column: 2/12;
    grid-row: auto;
  }
}
.photos__layout {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.photos__layout img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.photos__top {
  grid-row: 1;
}
.photos__bottom {
  grid-row: 2;
}
.photos__first {
  grid-column: 1/6;
  grid-row: 1;
}
@media (min-width: 768px) {
  .photos__first {
    grid-column: 1/5;
    grid-row: auto;
  }
}
.photos__second {
  grid-column: 1/6;
  grid-row: 2;
}
@media (min-width: 768px) {
  .photos__second {
    grid-column: 5/7;
    grid-row: auto;
  }
}
.photos__third {
  grid-column: 1/6;
  grid-row: 3;
}
@media (min-width: 768px) {
  .photos__third {
    grid-column: 7/12;
    grid-row: auto;
  }
}
.photos__fourth {
  grid-column: 1/6;
  grid-row: 4;
}
@media (min-width: 768px) {
  .photos__fourth {
    grid-column: 1/5;
    grid-row: auto;
  }
}
.photos__fifth {
  grid-column: 1/6;
  grid-row: 5;
}
@media (min-width: 768px) {
  .photos__fifth {
    grid-column: 5/7;
    grid-row: auto;
  }
}
.photos__sixth {
  grid-column: 1/6;
  grid-row: 6;
}
@media (min-width: 768px) {
  .photos__sixth {
    grid-column: 7/12;
    grid-row: auto;
  }
}
.photos__link {
  grid-column: 1/-1;
  width: 100%;
  text-align: center;
  border-top: solid 1px #2d2d2a;
  margin-top: 0;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  padding: 0;
}
.photos__link span {
  display: block;
  padding: 12px 0;
  color: #2d2d2a;
  background: transparent;
  transition: transform 0.3s;
}

.about {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .about {
    grid-template-columns: repeat(12, 1fr);
  }
}
.about__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  font-size: 32px;
  padding: 12px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .about__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.about__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
}
@media (min-width: 768px) {
  .about__grid {
    grid-column: 2/12;
    grid-row: 1/3;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 20px;
    row-gap: 20px;
    border-left: 1px solid #2d2d2a;
    border-right: 1px solid #2d2d2a;
  }
}
.about__first-par {
  grid-column: 1;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .about__first-par {
    grid-column: 1/6;
    grid-row: 1;
    border-right: solid 1px #2d2d2a;
    border-bottom: solid 1px #2d2d2a;
    padding: 28px 18px;
  }
}
@media (min-width: 1024px) {
  .about__first-par {
    padding: 32px 20px;
  }
}
.about__second-par {
  grid-column: 1;
  grid-row: 4;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .about__second-par {
    grid-column: 6/11;
    grid-row: 2;
    border-left: solid 1px #2d2d2a;
    border-top: solid 1px #2d2d2a;
    padding: 28px 18px;
  }
}
@media (min-width: 1024px) {
  .about__second-par {
    padding: 32px 20px;
  }
}
.about__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__img-first {
  grid-column: 1;
  grid-row: 2;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .about__img-first {
    grid-column: 6/11;
    grid-row: 1;
    border-left: solid 1px #2d2d2a;
    border-bottom: solid 1px #2d2d2a;
    min-height: 240px;
  }
}
@media (min-width: 1024px) {
  .about__img-first {
    min-height: 360px;
  }
}
.about__img-second {
  grid-column: 1;
  grid-row: 3;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .about__img-second {
    grid-column: 1/6;
    grid-row: 2;
    border-top: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
    border-bottom: none;
    min-height: 240px;
  }
}
@media (min-width: 1024px) {
  .about__img-second {
    min-height: 280px;
  }
}

.contact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .contact {
    grid-template-columns: repeat(12, 1fr);
  }
}
.contact__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  font-size: 32px;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.contact__form {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  .contact__form {
    grid-column: 1/6;
    grid-row: 1/2;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 112px 112px 1fr;
    grid-column-gap: 20px;
    border-left: solid 1px #2d2d2a;
    border-right: solid 1px #2d2d2a;
  }
}
@media (min-width: 1024px) {
  .contact__form {
    grid-template-rows: 112px 112px 1fr;
    grid-column-gap: 20px;
    border-left: none;
  }
}
.contact__list {
  grid-column: 1/6;
  grid-row: 3;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 70px;
  display: flex;
  flex-direction: column;
  border-top: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .contact__list {
    display: grid;
    grid-row: 1/2;
    grid-column: 6/11;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    border-top: none;
  }
}
.contact__el {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #2d2d2a;
}
.contact__el:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .contact__el {
    border-top: none;
    border-right: none;
    border-left: solid 1px #2d2d2a;
  }
}
.contact__link {
  width: 100%;
  align-self: center;
  display: flex;
  justify-content: center;
  height: 100%;
  line-height: 1;
  font-size: clamp(20px, 3.5vw, 86px);
}

.t1,
.t2,
.t3,
.t4 {
  grid-column: auto;
  grid-row: auto;
}

@media (min-width: 768px) {
  .t1,
  .t2,
  .t3,
  .t4 {
    grid-column: 1/6;
  }
  .t1 {
    grid-row: 1/2;
  }
  .t2 {
    grid-row: 2/3;
  }
  .t3 {
    grid-row: 3/4;
  }
  .t4 {
    grid-row: 4/5;
  }
}
.form__name {
  grid-column: 1;
  grid-row: 1;
  padding: 16px 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .form__name {
    grid-column: 1/6;
    padding-left: 20px;
  }
}
.form__mail {
  grid-column: 1;
  grid-row: 2;
  padding: 16px 20px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .form__mail {
    grid-column: 1/6;
    padding-left: 20px;
  }
}
.form__description {
  grid-column: 1;
  grid-row: 3;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  height: auto;
}
@media (min-width: 768px) {
  .form__description {
    grid-column: 1/6;
    min-height: 112px;
  }
}
.form__input {
  border: none;
  background-color: #f7f7f5;
  font-size: clamp(18px, 3.5vw, 42px);
  margin-top: 8px;
  width: 100%;
}
.form__input:focus {
  outline: none;
}
.form__textarea {
  border: none;
  background-color: #f7f7f5;
  font-size: clamp(16px, 3vw, 42px);
  font-family: inherit;
  resize: none;
  width: 100%;
  flex: 1;
}
.form__textarea:focus {
  outline: none;
}
.form__label {
  margin-bottom: 8px;
}
.form__message {
  min-height: 150px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup__content {
  background-color: #f7f7f5;
  padding: clamp(24px, 5vw, 50px) clamp(20px, 4vw, 40px);
  border: 1px solid #2d2d2a;
  text-align: center;
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.popup.is-active .popup__content {
  transform: translateY(0);
}
.popup__message {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #2d2d2a;
  margin: 0;
}
.popup__message::before {
  content: "";
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
}
.popup__close-btn {
  margin-top: 10px;
  align-self: center;
}
@media (max-width: 480px) {
  .popup__message {
    font-size: 1rem;
  }
  .popup__content {
    gap: 16px;
  }
}

.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.body__link {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 86px;
  color: #2d2d2a;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .body__link {
    font-size: 38px;
  }
}

label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #5a5a58;
}

img {
  max-width: 100%;
}

.subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  align-items: center;
  text-transform: uppercase;
  font-size: 35px;
}
@media (min-width: 768px) {
  .subtitle {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1280px) {
  .subtitle {
    font-size: 50px;
  }
}

body {
  background-color: #f7f7f5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

textarea {
  resize: none;
}

.glitch-link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}

.glitch-fill {
  position: absolute;
  inset: 0;
  background: #2d2d2a;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.glitch-link.is-hovered .glitch-fill {
  transform: scaleX(1);
}

.glitch-link.is-leaving .glitch-fill {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.glitch-link.is-hovered {
  color: #f7f7f5;
}

.glitch-sizer {
  display: block;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.glitch-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.footer__link.glitch-link .glitch-fill {
  background: #f7f7f5;
}
.footer__link.glitch-link.is-hovered {
  color: #2d2d2a;
}

.glitch-link--marquee {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: transparent;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.glitch-link--marquee .glitch-label {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  color: #2d2d2a;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  transform: translateX(0);
}
.glitch-link--marquee:hover {
  background-color: #2d2d2a;
}
.glitch-link--marquee:hover .glitch-label {
  color: #f7f7f5;
  animation: marquee-infinite 15s linear infinite;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.projet-hero {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-hero {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projet-hero__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .projet-hero__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.projet-hero__heading {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #2d2d2a;
  padding: 20px 0 20px 20px;
  grid-row: 1;
}
@media (min-width: 768px) {
  .projet-hero__heading {
    border-right: solid 1px #2d2d2a;
    border-bottom: none;
    grid-column: 1/7;
    padding: 32px 20px 0 20px;
  }
}
@media (min-width: 1280px) {
  .projet-hero__heading {
    grid-column: 1/8;
  }
}
.projet-hero__meta {
  grid-column: 1/5;
  grid-row: 2;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 768px) {
  .projet-hero__meta {
    padding: 32px 20px 0 20px;
    margin: 0;
    grid-row: 1;
    grid-column: 7/13;
    border-right: solid 1px black;
  }
}
@media (min-width: 1280px) {
  .projet-hero__meta {
    margin: 0;
    grid-column: 8/13;
  }
}
.projet-hero__name {
  font-size: 60px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .projet-hero__name {
    font-size: 50px;
  }
}
@media (min-width: 1280px) {
  .projet-hero__name {
    font-size: 103px;
  }
}
.projet-hero__index {
  color: #888884;
}
.projet-hero__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
}
@media (min-width: 768px) {
  .projet-hero__grid {
    grid-column: 2/12;
    grid-row: 1/3;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 20px;
    border-left: 1px solid #2d2d2a;
    border-right: 1px;
  }
}
.projet-hero .projet-meta {
  width: 100%;
}
.projet-hero .projet-meta__key {
  text-transform: uppercase;
  color: #888884;
}
.projet-hero .projet-meta__item::after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-color: #888884;
  margin: 20px auto 20px;
  transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.projet-hero .projet-meta__item.is-visible::after {
  width: 100%;
}
.projet-hero .projet-meta__item:last-child::after {
  display: none;
}

.projet-description {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-description {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projet-description__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .projet-description__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.projet-description__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
}
@media (min-width: 768px) {
  .projet-description__grid {
    grid-column: 2/12;
    grid-row: 1/3;
    grid-template-columns: repeat(10, 1fr);
    row-gap: 20px;
    border-left: 1px solid #2d2d2a;
    border-right: 1px solid #2d2d2a;
  }
}
.projet-description__text {
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .projet-description__text {
    grid-column: 1/7;
    border-right: 1px solid #2d2d2a;
    padding: 32px 20px;
  }
}
@media (min-width: 1280px) {
  .projet-description__text {
    grid-column: 1/9;
  }
}
.projet-description__tags {
  padding: 24px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-description__tags {
    border-top: none;
    grid-column: 7/12;
    padding: 32px 20px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .projet-description__tags {
    grid-column: 9/12;
  }
}

.tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border: solid 1px #2d2d2a;
  display: block;
  color: #2d2d2a;
}
.tag--orange {
  background-color: #ff6700;
}
.tag--green {
  background-color: #dcff99;
}
.tag--blue {
  background-color: #33a1ff;
}
.tag--purple {
  background-color: #c399ff;
}

.text__spacing {
  margin-bottom: 20px;
}

.projet-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-features {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projet-features__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .projet-features__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.projet-features__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  row-gap: 0;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) {
  .projet-features__grid {
    grid-column: 2/12;
    grid-row: 1/3;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    border-left: 1px solid #2d2d2a;
    border-right: 1px solid #2d2d2a;
  }
}
.projet-features__item {
  grid-column: span 2;
  border-right: 1px solid #2d2d2a;
  border-top: 1px solid #2d2d2a;
  padding: 24px 20px;
}
.projet-features__item:nth-child(1) .projet-features__num::after {
  background: #f487b6;
}
.projet-features__item:nth-child(2) .projet-features__num::after {
  background: #dc2011;
}
.projet-features__item:nth-child(3) .projet-features__num::after {
  background: #feff66;
}
.projet-features__item:nth-child(4) .projet-features__num::after {
  background: #ff6700;
}
.projet-features__item:nth-child(5) .projet-features__num::after {
  background: #dcff99;
}
.projet-features__item:nth-child(6) .projet-features__num::after {
  background: #33a1ff;
}
@media (min-width: 768px) {
  .projet-features__item {
    padding: 32px 20px;
    grid-column: span 4;
    border-right: 1px solid #2d2d2a;
  }
  .projet-features__item:nth-child(1) {
    border-top: none;
  }
  .projet-features__item:nth-child(2) {
    border-top: none;
  }
  .projet-features__item:nth-child(3) {
    border-top: none;
    border-right: none;
  }
  .projet-features__item:last-child {
    border-right: none;
  }
}
.projet-features__num {
  display: block;
  margin-bottom: 20px;
}
.projet-features__num::after {
  content: "";
  display: block;
  height: 4px;
  width: 20px;
  margin: 4px auto; /* centré grâce au auto */
  position: absolute; /* positionné par rapport au parent */
  /* l'animation */
}
.projet-features__title {
  text-transform: uppercase;
  margin-bottom: 16px;
}
.projet-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-process {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projet-process__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .projet-process__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.projet-process__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 0;
}
@media (min-width: 768px) {
  .projet-process__grid {
    grid-column: 2/12;
    grid-row: 1/3;
    border-left: 1px solid #2d2d2a;
    border-right: 1px solid #2d2d2a;
  }
}

.process-step {
  grid-column: span 12;
  padding: 24px 20px;
  border-bottom: solid 1px #2d2d2a;
}
.process-step:last-child {
  border: none;
}
@media (min-width: 768px) {
  .process-step {
    grid-column: span 6;
    padding: 32px 20px;
    border-right: 1px solid #2d2d2a;
  }
  .process-step:nth-child(2) {
    border-right: none;
  }
  .process-step:nth-child(3) {
    border-bottom: none;
  }
  .process-step:last-child {
    border-right: none;
  }
}
@media (min-width: 1024px) {
  .process-step {
    grid-column: span 3;
    border-bottom: none;
  }
  .process-step:nth-child(2) {
    border-right: 1px solid #2d2d2a;
  }
  .process-step:last-child {
    border-right: none;
  }
}
.process-step__num {
  display: block;
  margin-bottom: 8px;
}
.process-step__title {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.num {
  color: #74746d;
}

.projet-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-flow {
    grid-template-columns: repeat(12, 1fr);
  }
}
.projet-flow__subtitle {
  grid-column: 1/6;
  grid-row: 1;
  border-bottom: solid 1px #2d2d2a;
  padding: 12px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .projet-flow__subtitle {
    grid-column: 1/2;
    grid-row: 1/3;
    border-bottom: none;
    padding: initial;
    text-align: initial;
  }
}
.projet-flow__grid {
  grid-column: 1/6;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  background-color: #c399ff;
}
.projet-flow__grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .projet-flow__grid {
    gap: 0px;
    grid-column: 2/12;
    grid-row: 1/3;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    overflow-x: initial;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    border-left: 1px solid #2d2d2a;
    border-right: 1px solid #2d2d2a;
    padding: 20px;
  }
}

.flow-screen {
  border: 1px solid #2d2d2a;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #f7f7f5;
  max-width: 100%;
}
@media (min-width: 768px) {
  .flow-screen {
    grid-column: span 4;
  }
}

.flow-screen__bar {
  height: 22px;
  border-bottom: 1px solid #2d2d2a;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.flow-screen__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d2d2a;
  opacity: 0.2;
}

.flow-screen__img {
  width: 100%;
  overflow: hidden;
}

.flow-screen__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.flow-screen__caption {
  border-top: 1px solid #2d2d2a;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-screen__num {
  font-size: 9px;
  color: #2d2d2a;
  opacity: 0.35;
}

.flow-screen__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2d2d2a;
  opacity: 0.6;
}

.projet-nav {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-nav {
    gap: 20px;
  }
}
.projet-nav__link {
  grid-column: span 12;
}
@media (min-width: 768px) {
  .projet-nav__link {
    grid-column: span 6;
    font-size: 86px;
  }
}
.projet-nav__prev {
  display: block;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-nav__prev {
    border-right: solid 1px #2d2d2a;
  }
}
.projet-nav__next {
  display: block;
  border-bottom: solid 1px #2d2d2a;
}
@media (min-width: 768px) {
  .projet-nav__next {
    border-left: solid 1px #2d2d2a;
  }
}

.credits-hero {
  padding: 48px 20px 40px;
  border-bottom: 1px solid #2d2d2a;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .credits-hero {
    padding: 80px 40px 48px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.credits-hero__tag {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #74746d;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.credits-hero__title {
  font-size: clamp(48px, 8vw, 100px);
  text-transform: uppercase;
  line-height: 1;
}

.credits-block {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #2d2d2a;
}
@media (min-width: 768px) {
  .credits-block {
    grid-template-columns: 200px 1fr;
  }
}
@media (min-width: 1280px) {
  .credits-block {
    grid-template-columns: 260px 1fr;
  }
}
.credits-block__label {
  padding: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #74746d;
  border-bottom: 1px solid #2d2d2a;
}
@media (min-width: 768px) {
  .credits-block__label {
    border-bottom: none;
    border-right: 1px solid #2d2d2a;
    padding: 32px 20px;
  }
}
.credits-block__list {
  list-style: none;
}
.credits-block__text {
  padding: 32px 20px;
  max-width: 560px;
}

.credits-entry {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-bottom: 1px solid #2d2d2a;
}
.credits-entry:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .credits-entry {
    flex-direction: row;
    align-items: baseline;
    padding: 24px 20px;
  }
}
.credits-entry__name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .credits-entry__name {
    width: 220px;
  }
}
@media (min-width: 1280px) {
  .credits-entry__name {
    width: 280px;
  }
}
.credits-entry__info {
  color: #74746d;
}
.credits-entry__info a {
  color: #2d2d2a;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: 48px 20px 40px;
  border-bottom: 1px solid #2d2d2a;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .legal-hero {
    padding: 80px 40px 48px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.legal-hero__tag {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #74746d;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.legal-hero__title {
  font-size: clamp(48px, 8vw, 100px);
  text-transform: uppercase;
  line-height: 1;
}

.legal-block {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #2d2d2a;
}
@media (min-width: 768px) {
  .legal-block {
    grid-template-columns: 200px 1fr;
  }
}
@media (min-width: 1280px) {
  .legal-block {
    grid-template-columns: 260px 1fr;
  }
}
.legal-block__label {
  padding: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #74746d;
  border-bottom: 1px solid #2d2d2a;
}
@media (min-width: 768px) {
  .legal-block__label {
    border-bottom: none;
    border-right: 1px solid #2d2d2a;
    padding: 32px 20px;
  }
}
.legal-block__content {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}
.legal-block__content p {
  line-height: 1.4;
}
.legal-block__content a {
  color: #2d2d2a;
  text-underline-offset: 3px;
}

.legal-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list--disc li {
  padding-left: 16px;
  position: relative;
}
.legal-list--disc li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #74746d;
}
.legal-list--rights li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(223.1379310345, 223.1379310345, 220.8620689655);
}
.legal-list--rights li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-list__key {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #74746d;
  margin-right: 8px;
}
.legal-list:not(.legal-list--disc):not(.legal-list--rights) .legal-list__key {
  display: inline-block;
  min-width: 90px;
}/*# sourceMappingURL=styles.css.map */