/* ============================================
   SCIPYO — NOS MÉTIERS (Editorial / Hakluyt direction)
   Single column prose, no cards, no grid.
   Three pillars laid out as essay paragraphs.
   ============================================ */

.metiers {
  background: #FAFAF6; /* warm ivory — separates from white Cabinet section above */
  padding: 140px 0 160px;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.metiers__container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.metiers__overline {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #8C9197;
  margin: 0 0 56px;
}

.metiers__lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.36;
  color: #0A2540;
  margin: 0 0 88px;
  letter-spacing: -0.005em;
}

/* === Each pillar block === */
.metier {
  padding: 56px 0;
  border-top: 1px solid rgba(10, 37, 64, 0.10);
}

.metier:last-child {
  border-bottom: 1px solid rgba(10, 37, 64, 0.10);
}

.metier__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 0 0 24px;
}

.metier__num {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #8C9197;
}

.metier__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0A2540;
  margin: 0;
}

.metier__body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: #4A5158;
  margin: 0 0 28px;
  max-width: 660px;
}

.metier__body strong {
  color: #0A2540;
  font-weight: 500;
}

.metier__link {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0A2540;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity 200ms ease, letter-spacing 300ms ease;
}

.metier__link:hover {
  opacity: 0.55;
  letter-spacing: 0.06em;
}

.metier__link .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 200ms ease;
}

.metier__link:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .metiers {
    padding: 96px 0 100px;
  }
  .metiers__container {
    padding: 0 24px;
  }
  .metiers__lede {
    font-size: 1.3125rem;
    margin-bottom: 64px;
  }
  .metier {
    padding: 40px 0;
  }
  .metier__header {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .metier__name {
    font-size: 1.5rem;
  }
  .metier__body {
    font-size: 1rem;
  }
}

/* === Hide legacy SaaS pillars-showcase === */
.pillars-showcase { display: none !important; }
