/* ============================================
   NOS ENGAGEMENTS — Page-specific styles
   Palette: #c4a046 (primary), #151515 (dark), #ffffff
   Font: Montserrat (loaded globally)
   ============================================ */

/* ── Hero éditorial ── */
.eng-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #151515;
}

.eng-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/camion-benne1.jpg') center / cover no-repeat;
  opacity: .35;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.eng-hero:hover .eng-hero__bg { transform: scale(1); }

.eng-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,21,21,.95) 30%, rgba(21,21,21,.3) 100%);
}

.eng-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
  width: 100%;
}

.eng-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c4a046;
  margin-bottom: 24px;
}

.eng-hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #c4a046;
  flex-shrink: 0;
}

.eng-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -1px;
}

.eng-hero__title em {
  font-style: normal;
  color: #c4a046;
}

/* ── Intro éditoriale ── */
.eng-intro {
  padding: 80px 0 72px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.eng-intro__lead {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: #151515;
  line-height: 1.65;
  max-width: 760px;
}

.eng-intro__lead strong { color: #c4a046; font-weight: 700; }

.eng-intro__body {
  color: #666;
  font-size: 15px;
  line-height: 1.85;
  padding-top: 28px;
  border-top: 2px solid #c4a046;
  margin-top: 32px;
}

/* ── Engagements : disposition éditoriale ── */
.eng-list {
  padding: 80px 0;
  background: #f7f7f7;
}

.eng-item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
}

.eng-item:first-child { padding-top: 0; }
.eng-item:last-child  { border-bottom: none; padding-bottom: 0; }

.eng-item__num {
  font-family: 'Teko', sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  transition: color .35s;
}

.eng-item:hover .eng-item__num { color: #c4a046; }

.eng-item__body {
  flex: 1;
  text-align: left;
}

.eng-item__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c4a046;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.eng-item__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #151515;
  margin-bottom: 14px;
  line-height: 1.25;
  text-align: center;
}

.eng-item__text {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: left;
}

.eng-item__proof {
  display: flex;
  width: fit-content;
  margin: 20px auto 0;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  transition: border-color .3s, color .3s;
}

.eng-item__proof .fa { color: #c4a046; font-size: 14px; }
.eng-item:hover .eng-item__proof { border-color: #c4a046; color: #151515; }

/* ── Citation centrale ── */
.eng-quote {
  background: #151515;
  padding: 80px 0;
  text-align: center;
}

.eng-quote__text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 28px;
  position: relative;
}

.eng-quote__text::before {
  content: '"';
  display: block;
  font-size: 96px;
  font-weight: 800;
  color: #c4a046;
  opacity: .3;
  line-height: .7;
  margin-bottom: 16px;
}

.eng-quote__author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c4a046;
}

/* ── Chiffres clés ── */
.eng-numbers {
  padding: 80px 0;
  background: #fff;
}

.eng-number__item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid #f0f0f0;
  transition: background .3s;
}

.eng-number__item:last-child { border-right: none; }
.eng-number__item:hover { background: #fdf9ef; }

.eng-number__val {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: #c4a046;
  letter-spacing: -1px;
}

.eng-number__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-top: 10px;
  letter-spacing: .5px;
}

.eng-number__sub {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

/* ── CTA final ── */
.eng-cta {
  background: #c4a046;
  padding: 72px 0;
  text-align: center;
}

.eng-cta__title {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.eng-cta__sub {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .eng-item { flex-direction: column; gap: 0; }
  .eng-item__num { font-size: 40px; margin-bottom: 8px; width: auto; }
  .eng-number__item { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .eng-number__item:last-child { border-bottom: none; }
}
