/* PORTES (section d'aiguillage) */
.doors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeUp 0.4s 0.1s ease both;
}
.door {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: background 0.15s, border-color 0.15s;
}
.door:hover { background: var(--bg3); border-color: var(--border2); }
.door-label {
  font-size: 11px; font-weight: 400; color: var(--text3);
  margin-bottom: 1.25rem;
}
.door h2 {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.25;
  margin-bottom: 0.75rem;
}
.door p {
  font-size: 14px; color: var(--text2);
  line-height: 1.7; margin-bottom: 2rem; flex: 1;
}
.door-keywords {
  font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.7; margin-bottom: 1.75rem;
}
.door-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  transition: gap 0.2s;
}
.door:hover .door-arrow { gap: 10px; }

/* ABOUT STRIP (section à propos) */
.about-strip {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2.5rem; align-items: start;
  padding-top: 1.5rem;
}
.about-ava {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; object-position: center 10%;
  border: 1px solid var(--border2);
  display: block;
}
.about-left { display: flex; flex-direction: column; gap: 0.25rem; }
.about-name { font-size: 14px; font-weight: 500; }
.about-handle { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text3); }
.about-location { font-size: 12.5px; color: var(--text3); }
.about-bio { font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.75; }
.about-right-col { display: flex; flex-direction: column; gap: 1rem; }
.about-langs { display: flex; gap: 5px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero-layout { grid-template-columns: 1fr; }
  .stats { width: 100%; margin-top: 2.5rem; }
  .doors { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: auto 1fr; }
  .about-links { display: none; }
}
