/* ======================================================
   CONTACT
   Page sobre, ouverte, alignée avec Prints / Process
   ====================================================== */


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


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

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

  position: relative;
}


/* ------------------------------------------------------
   Contenu
   ------------------------------------------------------ */
.contact-content {
  text-align: center;
}

.contact-text {
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.12em;

  color: #cfd6d3;
  opacity: 0.85;
}


/* Email */
.contact-email {
  color: #cfd6d3;
  text-decoration: none;
  opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
  .contact-email:hover {
    opacity: 1;
  }
}


/* ------------------------------------------------------
   Signature / retour SAS
   ------------------------------------------------------ */
.contact-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;
}

@media (hover: hover) and (pointer: fine) {
  .contact-back:hover {
    opacity: 1;
  }
}