/* ============================================================
   EBS — css/entreprise.css
   Styles spécifiques à la page Entreprise
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
#ent-hero {
  padding-top: calc(58px + 72px);
  padding-bottom: 72px;
  position: relative;
}

.ent-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.ent-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}

.ent-hero-sub {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
}

/* Identity card */
.ent-id-card {
  background: var(--c-white);
  border: var(--border);
  border-radius: var(--r-md);
  padding: 24px;
}

.ent-id-label {
  font-size: 9px;
  color: var(--c-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: var(--border);
}

.ent-id-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: var(--border);
}

.ent-id-row:last-child { border-bottom: none; }

.ent-id-key {
  font-size: 8px;
  color: var(--c-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ent-id-val {
  font-size: 12.5px;
  color: var(--c-dark);
  line-height: 1.5;
}

/* ── POSITIONNEMENT ───────────────────────────────────────── */
#ent-position {
  padding: 80px 0;
  background: var(--c-white);
  border-top: var(--border);
  border-bottom: var(--border);
}

.ent-position-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.ent-position-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.2;
  margin: 12px 0 24px;
}

.ent-position-text p {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.ent-position-text p:last-child { margin-bottom: 0; }

.ent-pos-svg {
  width: 100%;
  height: auto;
  border: var(--border);
  border-radius: var(--r-md);
  background: var(--c-bg);
  padding: 16px;
}

/* ── ÉQUIPE ───────────────────────────────────────────────── */
#ent-equipe {
  padding: 80px 0;
}

.ent-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-border);
  border: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 48px;
}

.ent-profile {
  background: var(--c-white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
}

.ent-profile:hover { background: var(--c-surf); }

.ent-profile-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.ent-profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--c-prim);
}

.ent-profile-initials {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: 0.06em;
}

.ent-profile-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-dark);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.ent-profile-role {
  font-size: 9px;
  color: var(--c-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ent-profile-divider {
  height: 0.5px;
  background: var(--c-border);
  margin-bottom: 20px;
}

.ent-profile-bio {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.ent-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Team note */
.ent-team-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--c-surf);
  border: var(--border);
  border-radius: var(--r);
}

.ent-team-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ent-team-note p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .ent-hero-inner     { grid-template-columns: 1fr; }
  .ent-id-card        { max-width: 100%; }
  .ent-position-grid  { grid-template-columns: 1fr; gap: 40px; }
  .ent-team-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ent-profile { padding: 24px 20px; }
}
