/* ─────────────────────────────────────────
   ABOUT PAGE — about.css
   Importé uniquement par about.html
───────────────────────────────────────── */

.about-page {
  min-height: 100vh;
  background: var(--white);
}

/* ── SHARED ELEMENTS ─────────────────── */
.abt-kicker,
.abt-section-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.abt-section-title {
  font-family: var(--font-hero);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}

.abt-body-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0 0 20px 0;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.abt-hero {
  padding: 160px 80px 100px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abt-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.abt-hero-title {
  font-family: var(--font-hero);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.93;
  color: var(--text);
  margin: 0;
}

.abt-hero-title em {
  font-style: normal;
  color: var(--sage);
}

.abt-hero-right {
  max-width: 420px;
  flex-shrink: 0;
  padding-left: 60px;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.abt-hero-statement {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 20px 0;
}

.abt-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════════
   WHO I AM — fond crème
══════════════════════════════════════════ */
.abt-who {
  background: var(--cream);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abt-who-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

/* Stat strip */
.abt-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.abt-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abt-stat-num {
  font-family: var(--font-hero);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.abt-stat-label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}

.abt-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.10);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   WHAT I BELIEVE — fond blanc
══════════════════════════════════════════ */
.abt-belief {
  background: var(--white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abt-belief-kicker {
  margin-bottom: 32px;
}

.abt-belief-quote {
  font-family: var(--font-hero);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  border: none;
  padding: 0;
  margin: 0 0 80px 0;
  max-width: 820px;
  quotes: none;
}

.abt-belief-quote::before,
.abt-belief-quote::after { content: none; }

.abt-belief-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
}

.abt-pillar {
  padding: 52px 44px;
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pillar-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.abt-pillar-title {
  font-family: var(--font-hero);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.abt-pillar-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════════
   HOW I WORK — fond crème
══════════════════════════════════════════ */
.abt-how {
  background: var(--cream);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abt-how-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.abt-how-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}

.abt-how-step:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.abt-how-num {
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.abt-how-step-title {
  font-family: var(--font-hero);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0 0 8px 0;
}

.abt-how-step-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════════
   SECTORS — fond blanc
══════════════════════════════════════════ */
.abt-sectors {
  background: var(--white);
  padding: 100px 80px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.abt-sectors-header {
  margin-bottom: 64px;
}

.abt-sectors-title {
  margin-top: 12px;
  margin-bottom: 16px;
}

.abt-sectors-sub {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.abt-sectors-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
}

.abt-sector-card {
  padding: 52px 44px;
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-sector-card--featured {
  background: var(--cream);
}

.abt-sector-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.abt-sector-name {
  font-family: var(--font-hero);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.abt-sector-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════════
   CTA — fond sage
══════════════════════════════════════════ */
.abt-cta {
  background: var(--sage);
  padding: 100px 80px;
}

.abt-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.abt-cta-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 20px;
}

.abt-cta-title {
  font-family: var(--font-hero);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.05;
}

.abt-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.7;
  max-width: 380px;
}

.abt-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  flex-shrink: 0;
}

.abt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.abt-cta-btn:hover { gap: 24px; }

.abt-cta-btn--primary {
  color: white;
}

.abt-cta-btn--primary .cta-circle {
  background: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-cta-btn--ghost {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.abt-cta-btn--ghost:hover {
  color: white;
  gap: 24px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 980px) {
  .abt-hero {
    padding: 140px 40px 60px;
  }
  .abt-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .abt-hero-right {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 40px;
  }
  .abt-who { padding: 80px 40px; }
  .abt-who-inner { grid-template-columns: 1fr; gap: 48px; }
  .abt-belief { padding: 80px 40px; }
  .abt-belief-pillars { grid-template-columns: 1fr; }
  .abt-how { padding: 80px 40px; }
  .abt-how-inner { grid-template-columns: 1fr; gap: 48px; }
  .abt-sectors { padding: 80px 40px; }
  .abt-sectors-grid { grid-template-columns: 1fr; }
  .abt-cta { padding: 80px 40px; }
  .abt-cta-inner { flex-direction: column; align-items: flex-start; gap: 48px; }
  .abt-cta-actions { align-items: flex-start; }
}

@media (max-width: 600px) {
  .abt-hero { padding: 120px 24px 48px; }
  .abt-who { padding: 60px 24px; }
  .abt-belief { padding: 60px 24px; }
  .abt-pillar { padding: 40px 24px; }
  .abt-how { padding: 60px 24px; }
  .abt-sectors { padding: 60px 24px; }
  .abt-sector-card { padding: 40px 24px; }
  .abt-cta { padding: 60px 24px; }
  .abt-stats { gap: 24px; }
  .abt-stat-divider { display: none; }
}
