/* ======================================================
   PRINTS — COMING SOON
   Page minimale, sobre, alignée Process / Fragments
   ====================================================== */


/* ------------------------------------------------------
   Page
   ------------------------------------------------------ */
.prints-page {
  background: #0b0f0d;
}


/* ------------------------------------------------------
   Conteneur principal
   ------------------------------------------------------ */
.prints {
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}


/* ------------------------------------------------------
   Contenu centré
   ------------------------------------------------------ */
.prints-content {
  text-align: center;
}

.prints-text {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;

  color: #cfd6d3;
  opacity: 0.85;
}


/* ------------------------------------------------------
   Signature / retour vers le SAS
   ------------------------------------------------------ */
.prints-back {
  position: absolute;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + clamp(32px, 6vh, 56px));
  transform: translateX(-50%);

  font-family: "Nasalization", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;

  color: #9ad4b3;
  opacity: 0.7;

  transition: opacity 0.2s ease;
}


/* Hover desktop uniquement */
@media (hover: hover) and (pointer: fine) {
  .prints-back:hover {
    opacity: 1;
  }
}