/* ============================================
   IS COM — Page Projet CSS
   ============================================ */

.nav-menu a.active { color: var(--blue); }
.nav-menu a.active::after { width: 100%; }

/* --- BREADCRUMB --- */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: var(--gray); }

/* --- HERO PROJET --- */
.projet-hero {
  padding: 140px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
}
.projet-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 8px;
}
.projet-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(47,105,177,0.2);
  margin-bottom: 20px;
}
.projet-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.projet-tagline {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Meta infos */
.projet-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
}
.projet-meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.meta-value { font-size: 14px; font-weight: 600; color: var(--text); }

.projet-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visuel principal */
.projet-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
}
.projet-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- PLACEHOLDERS (remplacés par vos images) --- */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius-lg);
  width: 100%;
}
.img-placeholder--main   { aspect-ratio: 4/3; }
.img-placeholder--wide   { aspect-ratio: 16/7; }
.img-placeholder--square { aspect-ratio: 1/1; }

.img-placeholder-icon { font-size: 40px; }
.img-placeholder-text { font-size: 13px; font-weight: 600; color: var(--gray-dark); }
.img-placeholder-hint { font-size: 11px; color: var(--gray); font-style: italic; }

/* --- SECTIONS --- */
.projet-section { padding: 80px 0; background: var(--white); }
.projet-section--alt { background: var(--bg-alt); }
.projet-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 12px 0 28px;
  line-height: 1.1;
}

/* Texte contexte */
.projet-block { max-width: 720px; }
.projet-text-content { display: flex; flex-direction: column; gap: 18px; }
.projet-text-content p { font-size: 16px; color: var(--text-2); line-height: 1.8; }

/* --- GALERIE --- */
.projet-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- PRESTATIONS --- */
.projet-services-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.projet-intro-text { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-top: 4px; }
.projet-services-list { display: flex; flex-direction: column; gap: 24px; }
.projet-service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.projet-service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(47,105,177,0.2);
}
.ps-icon { font-size: 32px; flex-shrink: 0; }
.ps-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ps-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* --- TÉMOIGNAGE --- */
.projet-section--blue {
  background: var(--blue);
  padding: 80px 0;
}
.projet-result { max-width: 760px; margin: 0 auto; }
.result-quote { text-align: center; }
.quote-mark {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  line-height: 0.8;
  margin-bottom: 24px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 40px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.quote-name { font-size: 16px; font-weight: 700; color: var(--white); text-align: left; }
.quote-role { font-size: 13px; color: rgba(255,255,255,0.6); text-align: left; margin-top: 2px; }

/* --- NAVIGATION ENTRE PROJETS --- */
.projet-nav-section {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--gray-mid);
}
.projet-nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.projet-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-decoration: none;
}
.projet-nav-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(47,105,177,0.25);
}
.projet-nav-card--next { text-align: right; }
.nav-direction { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.nav-title { font-size: 15px; font-weight: 700; color: var(--text); }
.projet-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--gray-mid);
  border-radius: 100px;
  background: var(--white);
  white-space: nowrap;
  transition: all 0.3s;
  text-decoration: none;
}
.projet-nav-center:hover { color: var(--blue); border-color: var(--blue); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .projet-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .projet-services-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .projet-hero { padding: 120px 0 60px; }
  .projet-section { padding: 60px 0; }
  .projet-gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .projet-nav-grid { grid-template-columns: 1fr; }
  .projet-nav-center { display: none; }
  .projet-meta { grid-template-columns: 1fr 1fr; }
}
