﻿/* ===== NAV ACTIVE ===== */
.nav__link--active {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== REVEAL BASE ===== */
.nc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.nc-reveal.visible {
  opacity: 1;
  transform: none;
}
.qui__image-wrap.nc-reveal  { transition-delay: 0.1s; }
.valeur-card:nth-child(2)   { transition-delay: 0.1s; }
.valeur-card:nth-child(3)   { transition-delay: 0.2s; }
.valeur-card:nth-child(4)   { transition-delay: 0.3s; }
.timeline__item:nth-child(2){ transition-delay: 0.08s; }
.timeline__item:nth-child(3){ transition-delay: 0.16s; }
.timeline__item:nth-child(4){ transition-delay: 0.24s; }
.timeline__item:nth-child(5){ transition-delay: 0.32s; }
.gerant__right.nc-reveal    { transition-delay: 0.1s; }
.nc-cta__sub.nc-reveal      { transition-delay: 0.1s; }

/* ===== HERO ===== */
.nc-hero {
  background: var(--navy-grad);
  padding: 80px 0 96px;
  text-align: center;
}
.nc-hero__inner { max-width: 900px; margin: 0 auto; }
.nc-hero .section-eyebrow { margin-bottom: 20px; }

.nc-hero__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.nc-hero__title strong { font-weight: 800; }

.nc-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ===== QUI SOMMES-NOUS ===== */
.qui {
  background: var(--white);
  padding: 88px 0;
}

.qui__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.qui .section-eyebrow { margin-bottom: 16px; }

.qui__title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.qui__title strong { font-weight: 800; }

.qui__para {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.qui__para:last-of-type { margin-bottom: 32px; }

.qui__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qui-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
}
.qui-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.qui__image-wrap { position: relative; }
.qui__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

/* ===== VALEURS ===== */
.valeurs {
  background: #f4f6f9;
  padding: 88px 0;
}

.valeurs__eyebrow { text-align: center; }
.valeurs__title {
  text-align: center;
  margin-bottom: 52px;
  font-weight: 400;
}
.valeurs__title strong { font-weight: 800; }

.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.valeur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.valeur-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.valeur-card--dark {
  background: var(--navy-grad);
  border-color: transparent;
}
.valeur-card--dark .valeur-card__title { color: var(--white); }
.valeur-card--dark .valeur-card__text  { color: rgba(255,255,255,0.6); }

.valeur-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.valeur-card__icon--light { background: rgba(192,57,43,0.15); }
.valeur-card__icon svg { width: 24px; height: 24px; }

.valeur-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.valeur-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== TIMELINE ===== */
.timeline {
  background: var(--white);
  padding: 88px 0;
}

.timeline__eyebrow { text-align: center; }
.timeline__title {
  text-align: center;
  margin-bottom: 56px;
  font-weight: 400;
}
.timeline__title strong { font-weight: 800; }

.timeline__track {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: #e5e7eb;
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  flex-shrink: 0;
}

.timeline__body { flex: 1; }

.timeline__year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.timeline__event {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.timeline__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== GÉRANT ===== */
.gerant {
  background: var(--navy-grad);
  padding: 88px 0;
}

.gerant__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.gerant__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 24px;
}

.gerant__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(80,100,180,0.35);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  border: 3px solid rgba(100,140,220,0.6);
  box-shadow: 0 0 0 6px rgba(80,110,200,0.18);
}

.gerant__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.gerant__role {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.gerant__right { padding-top: 4px; }

.gerant__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.gerant__quote {
  font-size: 48px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.05em;
}

.gerant__para {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gerant__signature {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== CTA ===== */
.nc-cta {
  background: var(--white);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.nc-cta__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.nc-cta__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .valeurs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .qui__inner { grid-template-columns: 1fr; gap: 40px; }
  .qui__image-wrap { order: -1; }
  .valeurs__grid { grid-template-columns: 1fr; }
  .gerant__inner { grid-template-columns: 1fr; gap: 40px; }
  .gerant__left { flex-direction: row; text-align: left; }
  .nc-hero__subtitle br { display: none; }
}

@media (max-width: 480px) {
  .qui__badges { flex-direction: column; }
}
