/* ════════════════════════════════════
   PROJETS — PAGE LISTE
════════════════════════════════════ */

/* ── COMPENSE LA NAV FIXE (120px top + 42px bar) ── */
.page-intro {
  padding-top: 200px;
}

/* ── SECTION GRILLE ── */
.projets-grid-section {
  background: var(--cream);
  padding: 72px 48px 96px;
}

.projets-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ── CARTE ── */
.projet-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border-gold);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.projet-card:hover {
  box-shadow: 0 8px 32px rgba(22, 10, 3, 0.12);
  transform: translateY(-4px);
}

/* ── IMAGE ── */
.projet-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-dark);
}

.projet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.projet-card:hover .projet-card-img img {
  transform: scale(1.04);
}

/* ── CORPS DE LA CARTE ── */
.projet-card-body {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--border-gold);
}

.projet-card-subtitle {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.projet-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .projets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projets-grid-section {
    padding: 48px 20px 72px;
  }

  .projets-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
