/* === HISTOIRE PAGE === */

.nav-active { color: var(--text) !important; font-weight: 500; }

/* Hero */
.hist-hero {
  padding: 5rem 0 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hist-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-mid);
  background: var(--green-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hist-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hist-hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hist-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* Histoire */
.hist-story {
  padding: 5rem 0;
  background: var(--bg);
}
.hist-story-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hist-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hist-story-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.hist-story-text p strong { color: var(--text); font-weight: 500; }
.hist-story-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hist-story-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Équipe */
.hist-team {
  padding: 5rem 0;
  background: var(--white);
}
.hist-team h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.team-avatar span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
}
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pourquoi nous */
.hist-why {
  padding: 5rem 0;
  background: var(--green);
}
.hist-why h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hist-hero   { padding: 3rem 0 2.5rem; }
  .hist-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hist-story-visual { display: none; }
  .team-grid   { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
}
