/* =========================================
   CONTACT.CSS — contact.html uniquement
   Coordonnées grand format + photo
   ========================================= */

/* ── COORDONNÉES — grand texte ───────────── */
.contact-coords {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
}
.contact-coords a { transition: opacity 0.2s ease; }
.contact-coords a:hover { opacity: 0.5; }

/* ── PHOTO ───────────────────────────────── */
.contact-photo {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  margin-bottom: 0;
}
.contact-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── RESPONSIVE MOBILE ──────────────────── */
@media (max-width: 720px) {
  .contact-coords { margin-bottom: 40px; }
  .contact-photo { aspect-ratio: 4 / 3; }
}
