/* =========================================
   LA ROUTE — Design System
   ========================================= */

:root {
  --brand: #0097B2;
  --brand-dark: #007A90;
  --brand-light: #E0F5F9;
  --dark: #1A1714;
  --mid: #3D3830;
  --muted: #8C8478;
  --bg: #F5F2EC;
  --bg-alt: #EDE9E1;
  --border: #C8C2B8;
  --font-main: 'DM Sans', sans-serif;
  --font-display: 'Caveat', cursive;
  --max-width: 1100px;
  --transition: 0.25s ease;
}

/* SVGs pre-colorés en #0097B2 directement — aucun filtre CSS nécessaire */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3 { line-height: 1.15; color: var(--dark); }
h2 { font-weight: 400; }

p { color: var(--mid); line-height: 1.7; }

.label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--brand);
  line-height: 1.2;
}

h1.label {
  font-size: 2.05rem !important;  /* ~32.8px */
  font-weight: 400 !important;
}

h2.label {
  font-size: 1.54rem !important;  /* ~24.6px (+3px) */
  font-weight: 400 !important;
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: 5.5rem 0; }
section.alt { background: var(--bg-alt); }
section.dark { background: var(--dark); }
section.dark h2,
section.dark h3 { color: white; }
section.dark p { color: rgba(255,255,255,0.6); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.text-center { text-align: center; }

/* =========================================
   NAV
   ========================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  padding: 0.4rem 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.04);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__logo em {
  color: var(--brand);
  font-style: normal;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--dark); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--dark); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--brand);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}


.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 200;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  transition: var(--transition);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all var(--transition);
}

.btn--green {
  background: var(--brand);
  color: white;
}

.btn--green:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 151, 178, 0.30);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(28,28,28,0.25);
}

.btn--outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
}


.btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  border-color: white;
  background: white;
  color: var(--dark);
}

/* =========================================
   HERO (Homepage)
   ========================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/background_home.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}


.hero__bg-img {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 780px;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
}

/* Road decoration */
@keyframes road-draw {
  0%   { clip-path: inset(0 0 100% 0); opacity: 0; }
  15%  { opacity: 0.5; }
  100% { clip-path: inset(0 0 0% 0);   opacity: 0.5; }
}

.hero__road {
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 46%;
  height: 72%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero__road-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  animation: road-draw 2.2s cubic-bezier(0.4, 0, 0.15, 1) 1.2s forwards;
}

@media (max-width: 820px) {
  .hero__road { display: none; }
}

@media (max-width: 820px) {
  .hero__bg-img { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.4;
  min-height: 2.1em;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.hero__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

/* Em en teal dans les titres de sections → police manuscrite */
h2 em, h3 em {
  font-style: normal;
  color: var(--brand);
  font-family: var(--font-display);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   HERO PILLARS (homepage)
   ========================================= */

.hero__pillars {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero__pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
  min-width: 100px;
  text-decoration: none;
  padding: 0.75rem;
  margin: -0.75rem;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}

.hero__pillar:hover {
  background: rgba(0, 151, 178, 0.07);
  transform: translateY(-3px);
}

.hero__pillar-icon {
  width: 128px;
  height: 128px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__pillar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
}

.hero__pillar-baseline {
  font-size: 0.75rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero__pillars {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero__pillar {
    flex-direction: row;
    align-items: center;
    flex: none;
    gap: 1rem;
  }
  .hero__pillar-icon {
    width: 80px;
    height: 80px;
  }
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */

.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero .label { margin-bottom: 0.5rem; }

.page-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7;
}

/* =========================================
   PILLAR QUOTES (approche hero)
   ========================================= */

.pillars-quotes {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: flex-start;
}

.pillar-quote {
  flex: 0 0 140px;
  max-width: 140px;
  border-top: 2px solid var(--brand);
  padding-top: 1.25rem;
}

.pillar-quote__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.pillar-quote__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  display: block;
  margin-bottom: 0.85rem;
}

.pillar-quote__baseline {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

.pillar-quote__text {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
}

.pillar-quote__text em.highlight {
  color: var(--brand);
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pillars-quotes { flex-direction: column; gap: 1.75rem; }
}

/* =========================================
   SECTION HEADS
   ========================================= */

.section-head { margin-bottom: 3.5rem; }

.section-head .label { margin-bottom: 0.75rem; }

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 0.8rem;
  max-width: 540px;
}

.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* =========================================
   PILLARS
   ========================================= */

.pillars {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-alt); }

.pillar__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--dark);
}

.pillar__text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: gap var(--transition);
}

.pillar__link:hover { gap: 0.7rem; }

/* =========================================
   CARDS
   ========================================= */

.card {
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--brand);
}

.card--accent {
  border-left: 2px solid var(--brand);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.sdg-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.sdg-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.card__text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =========================================
   PROCESS STEPS
   ========================================= */

/* ─── Timeline zigzag ──────────────────────────── */

.timeline {
  position: relative;
  margin-top: 4rem;
}

/* Route horizontale */
.timeline__road {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 0;
  border-top: 2px dashed var(--brand);
  opacity: 0.22;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.timeline__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

/* Chaque étape = colonne flex verticale */
.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Zones contenu — hauteur fixe pour centrer le nœud */
.timeline__zone {
  height: 150px;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  text-align: center;
}

.timeline__zone--top  { justify-content: flex-end;   padding-bottom: 0; }
.timeline__zone--bottom { justify-content: flex-start; padding-top: 0; }

/* Zones vides (placeholder symétrique) */
.timeline__zone[aria-hidden="true"] { visibility: hidden; }

/* Connecteurs verticaux nœud ↔ contenu */
.timeline__vline {
  width: 2px;
  height: 32px;
  flex-shrink: 0;
}

.timeline__step--up   .timeline__vline--top    { background: linear-gradient(to top,   var(--brand), transparent); }
.timeline__step--up   .timeline__vline--bottom { background: transparent; }
.timeline__step--down .timeline__vline--top    { background: transparent; }
.timeline__step--down .timeline__vline--bottom { background: linear-gradient(to bottom, var(--brand), transparent); }

/* Nœud circulaire */
.timeline__node {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 10px rgba(0, 151, 178, 0.12),
    0 6px 24px rgba(0, 151, 178, 0.28);
  position: relative;
  z-index: 2;
}

.timeline__node span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.timeline__title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.timeline__text {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ─── Mobile : timeline verticale ──────────────── */
@media (max-width: 768px) {
  .timeline { margin-top: 2.5rem; }

  .timeline__road {
    top: 0; bottom: 0;
    left: 30px; right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 2px dashed var(--brand);
    transform: none;
  }

  .timeline__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline__step {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .timeline__step:last-child { border-bottom: none; }

  /* Nœud toujours en premier à gauche */
  .timeline__node { order: 1; flex-shrink: 0; }

  /* Contenu visible toujours en second */
  .timeline__step--up   .timeline__zone--top,
  .timeline__step--down .timeline__zone--bottom {
    order: 2;
    height: auto;
    text-align: left;
    padding: 0;
    visibility: visible;
  }

  /* Cacher les zones vides + connecteurs */
  .timeline__zone[aria-hidden="true"],
  .timeline__vline { display: none; }
}

/* =========================================
   VALUES / ETHICS
   ========================================= */

.values { border-top: 1px solid var(--border); }

.value {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.value__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brand);
  line-height: 1;
}

.value__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.value__text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =========================================
   FEATURE LIST
   ========================================= */

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 0.5rem;
}

/* =========================================
   SPLIT SECTION (text + visual)
   ========================================= */

.split__text { padding-top: 0.5rem; }

.split__text .label { margin-bottom: 0.75rem; }

.split__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.split__text p {
  font-size: 0.97rem;
  margin-bottom: 1rem;
  max-width: 460px;
}

.split__text .btn { margin-top: 1.5rem; }

.split__visual {
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* =========================================
   HIGHLIGHT BOX
   ========================================= */

.highlight-box {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  padding: 1.5rem 2rem;
  border-radius: 0 3px 3px 0;
  margin: 2rem 0;
}

.highlight-box p {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.65;
}

/* =========================================
   TEAM
   ========================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team-member__img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--brand);
  overflow: hidden;
}

.team-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.team-member__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.team-member__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.team-member__bio {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =========================================
   CONTACT FORM
   ========================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info__item { margin-bottom: 2.5rem; }

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--brand);
  text-decoration: none;
}

.contact-info__value a:hover { text-decoration: underline; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit { margin-top: 1.5rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: var(--brand-light);
  border: 1px solid #a0dbc0;
  border-radius: 3px;
  padding: 1.5rem 2rem;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* =========================================
   FIT SECTION (pour qui / pas pour qui)
   ========================================= */

.fit-section {
  background: var(--dark);
  padding: 5.5rem 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.fit-col {
  padding: 3rem;
}

.fit-col--yes {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.fit-col__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.fit-col__head h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.fit-col__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-col__icon--yes {
  background: var(--brand);
  color: white;
}

.fit-col__icon--no {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.fit-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 0.55rem;
}

.fit-list--no li {
  color: rgba(255,255,255,0.4);
}

.fit-list--no li::before {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-col--yes { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .fit-col { padding: 2rem 1.5rem; }
}

.fit-section--light {
  background: var(--bg);
}

.fit-section--light .fit-grid {
  border-color: var(--border);
}

.fit-section--light .fit-col--yes {
  border-right-color: var(--border);
}

.fit-section--light .fit-col__head h3 {
  color: var(--dark);
}

.fit-section--light .fit-col__icon--no {
  background: var(--bg-alt);
  color: var(--muted);
}

.fit-section--light .fit-list li {
  color: var(--mid);
}

.fit-section--light .fit-list--no li {
  color: var(--muted);
}

.fit-section--light .fit-list--no li::before {
  background: var(--border);
}

@media (max-width: 700px) {
  .fit-section--light .fit-col--yes { border-bottom-color: var(--border); }
}

/* =========================================
   SECTION WITH BACKGROUND IMAGE (approche)
   ========================================= */

.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 38%,
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.88) 75%,
    rgba(255,255,255,0.80) 100%
  );
  z-index: 0;
}

.section-bg--reverse::before {
  background: linear-gradient(
    to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 38%,
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.88) 75%,
    rgba(255,255,255,0.80) 100%
  );
}

.section-bg--vivid::before {
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 38%,
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.80) 72%,
    rgba(255,255,255,0.62) 100%
  );
}

.section-bg--reverse.section-bg--vivid::before {
  background: linear-gradient(
    to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 38%,
    rgba(255,255,255,0.75) 55%,
    rgba(255,255,255,0.40) 72%,
    rgba(255,255,255,0.15) 100%
  );
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

/* =========================================
   CTA BAND
   ========================================= */

.cta-band {
  text-align: center;
  padding: 6rem 0;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: var(--dark);
  padding: 4rem 0 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.footer__brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-top: 0.6rem;
  max-width: 200px;
  line-height: 1.6;
}

.footer__nav h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__nav a:hover { color: white; }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================
   SITE QUOTE
   ========================================= */

.site-quote {
  margin: 1.5rem 0 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--brand);
}

/* =========================================
   IDENTITY SECTION (Nous sommes / pas)
   ========================================= */

.identity-section {
  background: #F8F6F2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.identity-intro {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.identity-intro strong {
  color: var(--brand);
  font-weight: 600;
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .identity-grid { grid-template-columns: 1fr; }
}

.identity-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid;
}

.identity-heading--yes {
  color: var(--brand);
  border-color: var(--brand);
}

.identity-heading--no {
  color: var(--muted);
  border-color: var(--border);
}

.identity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.identity-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.025rem;
  line-height: 1.6;
}

.identity-num {
  font-family: var(--font-display);
  font-size: 1.225rem;
  color: var(--brand);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 1.5rem;
  margin-top: -0.05rem;
}

.identity-num--no { color: var(--muted); }

.identity-item strong {
  color: var(--dark);
  font-weight: 600;
}

.identity-item--no strong {
  color: var(--mid);
}

.identity-desc {
  color: var(--muted);
  font-size: 0.85rem;
}

/* =========================================
   ÉCLAIREURS
   ========================================= */

.eclaireurs-section {
  background: var(--bg);
}

.eclaireurs-header {
  margin-bottom: 3rem;
}

.eclaireurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Carte */
.eclaireur-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  display: block;
}

/* Photo portrait 1:3 */
.eclaireur-card__photo {
  aspect-ratio: 1 / 3;
  width: 100%;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.eclaireur-card:hover .eclaireur-card__photo {
  transform: scale(1.03);
}

/* Bloc infos ancré en bas de la photo */
.eclaireur-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(237, 233, 225, 0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.1rem 1.1rem 1.2rem;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s ease;
}

.eclaireur-card:hover .eclaireur-card__body {
  background: rgba(26, 23, 20, 0.82);
}

.eclaireur-card__static {
  /* toujours visible */
}

.eclaireur-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.eclaireur-card:hover .eclaireur-card__name {
  color: #fff;
}

.eclaireur-card__role {
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.eclaireur-card:hover .eclaireur-card__role {
  color: rgba(255,255,255,0.55);
}

.eclaireur-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.eclaireur-skill {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 151, 178, 0.12);
  border: 1px solid rgba(0, 151, 178, 0.35);
  border-radius: 20px;
  padding: 0.18rem 0.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.eclaireur-card:hover .eclaireur-skill {
  background: rgba(0, 151, 178, 0.2);
  border-color: rgba(0, 151, 178, 0.5);
}

/* Description — révélée au survol */
.eclaireur-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-top: 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease 0.1s, opacity 0.35s ease 0.15s;
}

.eclaireur-card:hover .eclaireur-card__desc {
  max-height: 160px;
  opacity: 1;
}

/* Bouton Lire la suite */
.eclaireur-readmore {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-main);
  transition: color 0.2s ease;
}
.eclaireur-card:hover .eclaireur-readmore {
  display: inline-block;
}
.eclaireur-readmore:hover {
  color: #fff;
}

/* ── Modale Éclaireur ───────────────────────────── */
.eclaireur-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.eclaireur-modal.is-open {
  display: flex;
}
.eclaireur-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: emBackdropIn 0.3s ease;
}
@keyframes emBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.eclaireur-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: row;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: emBoxIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes emBoxIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.eclaireur-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s ease;
}
.eclaireur-modal__close:hover { background: #fff; }
.eclaireur-modal__close svg { width: 14px; height: 14px; }

.eclaireur-modal__photo {
  width: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-alt);
}
.eclaireur-modal__content {
  padding: 2rem 2rem 2rem 1.8rem;
  overflow-y: auto;
  flex: 1;
}
.eclaireur-modal__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.eclaireur-modal__role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eclaireur-modal__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.eclaireur-modal__desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.eclaireur-modal__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #0077b5;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.eclaireur-modal__linkedin:hover { background: #005e93; }
.eclaireur-modal__linkedin svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 600px) {
  .eclaireur-modal__box { flex-direction: column; }
  .eclaireur-modal__photo { display: none; }
  .eclaireur-modal__content { padding: 1.4rem; }
}

@media (max-width: 900px) {
  .eclaireurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .eclaireurs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Bouton LinkedIn — inline avec le nom */
.eclaireur-linkedin,
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: #0077b5;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 0.3rem;
  position: relative;
  top: -1px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.eclaireur-linkedin svg,
.founder-linkedin svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.eclaireur-linkedin:hover,
.founder-linkedin:hover {
  background: #005e93;
}


/* Footer logo */
/* Post-it welcome aboard */
.welcome-aboard-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.welcome-aboard-img {
  width: 100%;
  max-width: 620px;
  height: auto;
}
@media (max-width: 768px) {
  .welcome-aboard-wrap { display: none; }
}

.footer__logo-link { display: inline-block; }
.footer__logo-img { height: 47px; width: auto; display: block; }

/* Playlist button in footer */
.footer__playlist {
  margin-top: 1.5rem;
}

.footer__playlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.footer__playlist-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  text-decoration: none;
}

.footer__playlist-btn svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity var(--transition), fill var(--transition);
}

.footer__playlist-btn:hover svg { opacity: 1; }

/* =========================================
   PLAYLIST PAGE
   ========================================= */

.playlist-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.playlist-hero__cover {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.playlist-hero__text {
  flex: 1;
  min-width: 260px;
}

.playlist-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.playlist-hero__sep { opacity: 0.4; }

.playlist-embed { width: 100%; }

.playlist-extract-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.platform-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.platform-btn:hover { text-decoration: none; }

.platform-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.platform-btn__flag {
  font-size: 1rem;
  line-height: 1;
}

.platform-btn--deezer { color: #1a1a1a; }
.platform-btn--deezer:hover { border-color: #A238FF; color: #A238FF; }

.platform-btn--spotify { color: #1a1a1a; }
.platform-btn--spotify:hover { border-color: #1DB954; color: #1DB954; }

.platform-btn--apple { color: #1a1a1a; }
.platform-btn--apple:hover { border-color: #FC3C44; color: #FC3C44; }

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MOBILE NAV
   ========================================= */

/* Logo mobile masqué par défaut (desktop) */
.nav__mobile-logo { display: none; }

@media (max-width: 820px) {
  /* Supprime le backdrop-filter sur mobile : il empêche position:fixed
     des enfants de couvrir toute la page (contain block = nav au lieu du viewport) */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.98);
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 150;
    list-style: none;
  }

  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.2rem; }
  .nav__cta { font-size: 1rem; padding: 0.8rem 2.5rem; }
  .nav__burger { display: flex; }

  .nav__mobile-logo { display: flex; justify-content: center; margin-bottom: 1rem; }
  .nav__mobile-logo img { height: 48px; width: auto; }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .process { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.5rem; }
  section { padding: 3.5rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
}

@media (max-width: 768px) {
  .raison-etre-visual { display: none !important; }
}

/* =========================================
   PORTRAITS ICON (link in equipe.html)
   ========================================= */

.portraits-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-family: var(--font-main);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
  margin-top: 0.5rem;
}

.portraits-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}

.portraits-icon:hover {
  opacity: 1;
  color: var(--brand);
}

.portraits-icon:hover svg {
  opacity: 1;
}

/* =========================================
   PORTRAIT PAGE
   ========================================= */

.portrait {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.portrait__visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.portrait__photo {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.portrait__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.portrait__photo--placeholder {
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: 6px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.portrait__photo--placeholder svg {
  width: 70%;
  height: auto;
  opacity: 0.5;
}

.portrait__logo {
  width: 100%;
}

.portrait__logo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.portrait__logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait__logo--placeholder svg {
  width: 100%;
  height: auto;
}

.portrait__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.portrait__header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portrait__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  line-height: 1.2;
}

.portrait__company {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

.portrait__desc {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.97rem;
}

.portrait__quote {
  border-left: 3px solid var(--brand);
  padding: 0.6rem 0 0.6rem 1.2rem;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  font-style: normal;
}

.portrait__sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

@media (max-width: 680px) {
  .portrait {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portrait__visual {
    flex-direction: row;
    align-items: flex-start;
  }

  .portrait__photo {
    width: 110px;
    flex-shrink: 0;
  }

  .portrait__logo {
    width: 130px;
    flex-shrink: 0;
  }
}

/* .founder-linkedin — défini avec .eclaireur-linkedin ci-dessus */
