/* identite : ex-bloc <style> de identite-blueprint-light.php, source de vérité depuis le 09/09/2026 (plan poids-html-blueprint-light, lot 2). Tokens : var(--color-*) uniquement. */
/* ═══════════════════════════════════════════════════════════════════
   KYTOM IDENTITÉ - AWWWARDS EDITION v3.1
   Conforme: Design System v1.3 + Charte Typo v3.0
   ═══════════════════════════════════════════════════════════════════ */

/* Override Inspirations en blanc sur /identite/ (section 06 = pair = blanc).
   Le partial inspirations-realisations.php est en crème par defaut. */
body.identite-blueprint-light #inspirations-identite,
body.identite-blueprint-light #inspirations-identite .floating-images-container {
  background: var(--color-white);
}
/* Aligner le header sur le fond de page (crème). */
body.identite-blueprint-light { --header-bg-scrolled: var(--color-cream); }

:root {
  /* ═══ Design System Tokens v1.3 ═══ */

  /* Couleurs : fournies par la charte (parts/styles-blueprint-light.php,
     inclus plus haut). Ne PAS les redéfinir ici : les valeurs locales
     historiques divergeaient (gray-medium, black, text-muted). */
  --accent-color: var(--color-orange);

  /* Typographie - Plus Jakarta Sans */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  
  /* Font Weights - Charte v3.0 */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Font Sizes - Charte v3.0 + CORRIGÉ */
  --font-size-hero: clamp(48px, 10vw, 120px);
  --font-size-h2: clamp(32px, 5vw, 48px);
  --font-size-h3: clamp(24px, 4vw, 32px);
  --font-size-h4: clamp(20px, 2.5vw, 24px);
  --font-size-lead: clamp(18px, 1.5vw, 20px);
  --font-size-body: clamp(16px, 1.1vw, 17px);
  --font-size-small: clamp(13px, 1vw, 14px);
  --font-size-label: clamp(11px, 0.9vw, 13px);
  
  /* Line Heights - CORRIGÉ pour éviter coupure descendantes */
  --line-height-hero: 1.1;          /* Était 1.02 - CORRIGÉ */
  --line-height-tight: 1.1;
  --line-height-heading: 1.15;
  --line-height-body: 1.7;
  
  /* Letter Spacing */
  --letter-spacing-tight: -0.03em;
  --letter-spacing-heading: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.15em;
  
  /* Animation Tokens - Design System v1.3 */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-smooth: var(--ease-out-expo);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-dramatic: var(--ease-in-out-expo);
  
  /* Stagger Timing */
  --stagger-char: 20ms;
  --stagger-word: 80ms;
  --stagger-line: 100ms;
  
  /* Durations */
  --duration-fast: 0.4s;
  --duration-medium: 0.6s;
  --duration-slow: 1s;
  --duration-hero: 1.4s;
  --transition-panel-duration: 500ms;
  
  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --section-padding-sm: clamp(60px, 8vh, 100px);
  --container-wide: 1400px;
  
  /* Breakpoints */
  --breakpoint-lg: 1024px;
}

/* ═══════════════════════════════════════════════════════════════════
   BASE - IDENTITÉ TEMPLATE
   ═══════════════════════════════════════════════════════════════════ */

.identite-blueprint-light {
  font-family: var(--font-body);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.identite-blueprint-light *,
.identite-blueprint-light *::before,
.identite-blueprint-light *::after {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO - TEXT-ONLY IMMERSIVE (yemanja.io style)
   Fond violet, typographie monumentale, pas d'image
   CORRIGÉ: line-height 1.1, overflow visible sur .word
   ═══════════════════════════════════════════════════════════════════ */

.hero-identite {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: clamp(120px, 15vh, 180px) clamp(24px, 5vw, 80px);
  background: var(--color-bleu);
  overflow: hidden;
}

/* Grain texture overlay */
.hero-identite::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Subtle gradient accent */
.hero-identite::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-identite .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-identite .hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  line-height: 1.1;                    /* CORRIGÉ: était 1.02, maintenant 1.1 */
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin: 0 0 clamp(30px, 5vh, 60px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* CORRIGÉ: overflow visible pour ne pas couper les descendantes (g, y, p, q) */
.hero-identite .hero-title .word {
  display: inline-block;
  overflow: visible;                   /* CORRIGÉ: était hidden */
  vertical-align: bottom;              /* Alignement correct des descendantes */
  padding-bottom: 0.05em;              /* Petit espace pour les descendantes */
}

.hero-identite .hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-identite .hero-title em {
  font-style: normal;
  color: var(--color-orange);
  display: inline-block;
}

.hero-identite .hero-subtitle {
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
}

/* Stats bar at bottom */
.hero-identite .hero-stats {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}

.hero-identite .hero-stat {
  text-align: center;
}

.hero-identite .hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-identite .hero-stat-label {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   MANIFESTE - GRANDE CITATION (factory.fr style)
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   SECTION — VALEURS / NOTRE ADN
   Grille 4 colonnes avec alignements parfaits
   ═══════════════════════════════════════════════════════════════════ */

.valeurs-section {
  padding: 0;
  /* Blanc = même fond que le bloc promesse qui précède (fusion visuelle,
     décision TP 2026-07-14 ; était var(--color-cream)). */
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Texture grain */
.valeurs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.valeurs-header {
  padding: var(--section-padding) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 80px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.valeurs-eyebrow {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.valeurs-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-orange);
}

.valeurs-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-bleu);
  margin: 0;
  max-width: 800px;
}

.valeurs-title em {
  font-style: normal;
  color: var(--color-orange);
}

/* Grid des valeurs - Alignements parfaits */
.valeurs-more {
  max-width: 1400px;
  margin: clamp(28px, 4vh, 44px) auto 0;
  /* Respiration sous le CTA (TP 14/07). */
  padding: 0 clamp(24px, 5vw, 80px) clamp(56px, 8vh, 96px);
}

/* CTA « Nos valeurs » : composant partagé kytom-cta-circle (parité home),
   agrandi ici — décision TP 2026-07-14 (libellé plus grand + cercle-flèche). */
.valeurs-more .kytom-cta-circle__text {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.12em;
}
.valeurs-more .kytom-cta-circle__circle {
  width: 64px;
  height: 64px;
}
.valeurs-more .kytom-cta-circle__circle svg {
  width: 24px;
  height: 24px;
}

.valeurs-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-orange);
  text-decoration: none;
  transition: gap 0.3s var(--ease-smooth), color 0.3s ease;
}

.valeurs-more a:hover {
  gap: 16px;
  color: var(--color-bleu);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(13, 40, 87, 0.08);
}

.valeur-card {
  position: relative;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(13, 40, 87, 0.08);
  background: transparent;
  transition: background 0.6s var(--ease-smooth);
  cursor: default;
  overflow: hidden;
  /* Hauteur minimale pour alignement */
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.valeur-card:last-child {
  border-right: none;
}

.valeur-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-smooth);
}

.valeur-card:hover {
  background: rgba(13, 40, 87, 0.04);
}

.valeur-card:hover::before {
  transform: scaleX(1);
}

.valeur-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 800;
  line-height: 1;
  color: rgba(13, 40, 87, 0.05);
  position: absolute;
  top: 20px;
  right: 20px;
  transition: color 0.4s ease;
}

.valeur-card:hover .valeur-number {
  color: rgba(245, 130, 32, 0.15);
}

.valeur-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--color-orange);
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.4s var(--ease-bounce);
}

.valeur-card:hover .valeur-icon {
  opacity: 1;
  transform: scale(1.1);
}

.valeur-icon svg {
  width: 100%;
  height: 100%;
}

.valeur-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--color-bleu);
  margin: 0 0 8px;
}

.valeur-baseline {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-orange);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.valeur-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(13, 40, 87, 0.6);
  margin-bottom: 24px;
  flex-grow: 1;
}

.valeur-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 40, 87, 0.08);
  margin-top: auto;
}

.valeur-stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-bleu);
}

.valeur-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(13, 40, 87, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION — TIMELINE / NOTRE HISTOIRE
   ═══════════════════════════════════════════════════════════════════ */

.timeline-section {
  padding: var(--section-padding) 0;
  background: var(--color-bleu);
  overflow: hidden;
}

.timeline-header {
  max-width: 1400px;
  margin: 0 auto clamp(40px, 6vh, 80px);
  padding: 0 clamp(24px, 5vw, 80px);
}

.timeline-eyebrow {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.timeline-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-orange);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0;
}

.timeline-title em {
  font-style: normal;
  color: var(--color-orange);
}

/* Timeline horizontale */
.timeline-track {
  position: relative;
  padding: 60px 0 80px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22) 10%, rgba(255, 255, 255, 0.22) 90%, transparent);
}

.timeline-items {
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  padding: 0 clamp(24px, 5vw, 80px);
  /* Sans scroll-padding, le snap aligne le 1er item au bord du scrollport
     en ignorant le padding (item collé au bord gauche). */
  scroll-padding-inline: clamp(24px, 5vw, 80px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.timeline-items::-webkit-scrollbar {
  display: none;
}

/* Focus clavier visible (a11y) : la frise est focusable (tabindex=0) pour le
   defilement au clavier — on rend le focus perceptible (WCAG 2.4.7). */
.timeline-items:focus-visible {
  outline: 2px solid var(--color-orange, #F27E33);
  outline-offset: 4px;
  border-radius: 4px;
}

.timeline-item {
  flex: 0 0 auto;
  width: clamp(280px, 25vw, 340px);
  scroll-snap-align: start;
  position: relative;
  padding-top: 40px;
}

.timeline-dot {
  position: absolute;
  top: -8px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--color-bleu);
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.4s var(--ease-bounce), background 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background: var(--color-orange);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.28;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.timeline-item:hover .timeline-year {
  opacity: 1;
  color: var(--color-orange);
}

.timeline-item-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 12px;
}

.timeline-item-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION — ÉQUIPES (Style agences-blueprint-light)
   ═══════════════════════════════════════════════════════════════════ */

.equipes-section-identite {
  padding: 0;
  background: var(--color-cream);
}

.equipes-header-bar {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--color-cream);
  padding: clamp(60px, 8vh, 100px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.equipes-header-bar::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.equipes-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.equipes-header-text {
  max-width: 700px;
}

.equipes-eyebrow {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.equipes-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-orange);
}

.equipes-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-bleu);
  margin: 0;
}

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

.equipes-header-stats {
  display: flex;
  gap: 48px;
  text-align: center;
}

.header-stat-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-bleu);
  margin-bottom: 4px;
}

.header-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Grille équipes */
.equipes-grid-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--color-cream);
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 80px);
}

.equipes-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.equipe-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: 16px;
  /* overflow visible : le popup accroche/citation déborde du cadre photo ;
     le clipping de la photo est porté par .equipe-portrait. */
  overflow: visible;
  position: relative;
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
  min-height: 480px;
}

.equipe-card:hover,
.equipe-card:focus-within {
  z-index: 5;
}

.equipe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-bleu));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-smooth);
  z-index: 2;
}

.equipe-card:hover::before {
  transform: scaleX(1);
}

.equipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.equipe-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Zoom de base par carte : rapprocher les personnages (--zoom + origin) */
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-origin, center);
  transition: transform 0.5s var(--ease-smooth);
}

/* Cadrages : personnages visibles et rapprochés, hors de la colonne titre droite */
.equipe-card[data-equipe="chef-projet"] .portrait-photo {
  --photo-zoom: 1.12;
  --photo-origin: 30% 55%;
  object-position: 30% center;
}
.equipe-card[data-equipe="architecte"] .portrait-photo {
  object-position: 32% center;
  --photo-zoom: 1.3;
  --photo-origin: 38% 60%;
}
.equipe-card[data-equipe="pilote-chantier"] .portrait-photo {
  object-position: 0 72%;
  --photo-zoom: 1.5;
  --photo-origin: 12% 78%;
}
.equipe-card[data-equipe="decorateur"] .portrait-photo {
  object-position: 30% center;
  --photo-zoom: 1.35;
  --photo-origin: 42% 60%;
}

.equipe-card:hover .portrait-photo {
  transform: scale(calc(var(--photo-zoom, 1) * 1.04));
}

/* Fallback icon */
.portrait-icon {
  width: 100px;
  height: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(13, 40, 87, 0.1);
  border-radius: 50%;
  transition: all 0.5s var(--ease-smooth);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portrait-icon.is-fallback {
  display: flex;
}

.portrait-icon svg {
  width: 50px;
  height: 50px;
  color: var(--color-bleu);
  transition: all 0.4s var(--ease-smooth);
}

.equipe-card:hover .portrait-icon {
  background: var(--color-orange);
}

.equipe-card:hover .portrait-icon svg {
  color: var(--color-white);
}

/* Voile discret derrière la numérotation (lisibilité sur photos claires) */
.equipe-portrait::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 160px;
  background: radial-gradient(circle at 22% 20%, rgba(0, 0, 0, 0.42), transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.portrait-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.55);
  z-index: 2;
}

.equipe-content {
  position: relative;
  z-index: 2;
  min-height: 480px;
  /* Photo quasi intégrale : fine bande sombre derrière le titre vertical
     seulement, popup à cheval sur le bord bas (TP 2026-07-03). */
  background: linear-gradient(to left,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 7%,
    transparent 14%,
    transparent 100%
  );
}

.equipe-role-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-orange);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.equipe-role-name {
  position: absolute;
  top: 24px;
  right: 18px;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin: 0;
  max-height: calc(100% - 48px);
  transition: color 0.3s ease;
  z-index: 3;
}

.equipe-card:hover .equipe-role-name {
  color: var(--color-orange);
}

.equipe-popup {
  position: absolute;
  left: 24px;
  right: 86px;
  bottom: 0;
  transform: translateY(52%);
  background: var(--color-white);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  padding: 18px 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), visibility 0.4s;
  z-index: 4;
}

.equipe-card:hover .equipe-popup,
.equipe-card:focus-within .equipe-popup,
.equipe-card:focus .equipe-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(42%);
}

.equipe-accroche {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bleu);
  margin: 0;
  line-height: 1.5;
}

.equipe-quote {
  margin: 10px 0 0;
  padding: 0;
}

.equipe-quote p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION — NOTRE APPROCHE (Copywriting Awwwards > 90)
   ═══════════════════════════════════════════════════════════════════ */

.approche-section {
  padding: var(--section-padding) clamp(24px, 5vw, 80px);
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.approche-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(13, 40, 87, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.approche-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.approche-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vh, 100px);
}

.approche-eyebrow {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 24px;
}

.approche-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-bleu);
  margin: 0 0 24px;
}

.approche-title strong {
  font-weight: 700;
  color: var(--color-orange);
}

.approche-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards approche - Style premium */
.approche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approche-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  border: 1px solid rgba(13, 40, 87, 0.06);
}

.approche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-bleu));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-smooth);
}

.approche-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.approche-card:hover::before {
  transform: scaleX(1);
}

.approche-card-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(13, 40, 87, 0.08);
  position: absolute;
  top: 20px;
  right: 24px;
}

.approche-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--color-orange);
  opacity: 0.9;
  transition: transform 0.4s var(--ease-bounce);
}

.approche-card:hover .approche-card-icon {
  transform: scale(1.1);
}

.approche-card-icon svg {
  width: 100%;
  height: 100%;
}

.approche-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--color-bleu);
  margin: 0 0 12px;
  line-height: 1.2;
}

.approche-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION — RSE / NOTRE EMPREINTE
   Inclut le composant rse-indicators-premium.php
   ═══════════════════════════════════════════════════════════════════ */

/* Harmonisation du fond avec section 05 */
.rse-section-expertises {
  background: var(--color-white);
  padding: var(--section-padding) clamp(24px, 5vw, 80px);
}

.rse-section-expertises .rse-manifesto {
  background: var(--color-white);
}

.rse-section-expertises .ec-label {
  background: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .valeur-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
  }
  
  .valeur-card:nth-child(2) {
    border-right: none;
  }
  
  .valeur-card:nth-child(3),
  .valeur-card:nth-child(4) {
    border-bottom: none;
  }
  
  .approche-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .equipes-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .equipes-header-stats {
    gap: 32px;
  }

  .equipes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equipe-card {
    min-height: 420px;
    /* espace pour le popup à cheval (pas de hover au doigt : toujours visible) */
    margin-bottom: 64px;
  }

  .equipe-content {
    min-height: 420px;
  }

  .equipe-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(42%);
    right: 72px;
  }
}

@media (max-width: 768px) {
  .hero-identite {
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(100px, 12vh, 140px) 24px clamp(120px, 18vh, 180px);
  }

  .hero-identite .hero-stats {
    flex-direction: column;
    gap: 24px;
    bottom: 30px;
    left: 24px;
    right: 24px;
  }

  .hero-identite .hero-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .hero-identite .hero-stat-value {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-identite .hero-stat-label {
    font-size: 11px;
  }

  .valeurs-grid {
    grid-template-columns: 1fr;
  }

  .valeur-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .valeur-card:last-child {
    border-bottom: none;
  }

  .timeline-item {
    width: 280px;
  }

  .equipe-card {
    min-height: 380px;
  }

  .equipe-content {
    min-height: 380px;
    padding: 24px;
  }

  .equipe-quote {
    margin-top: 12px;
  }

  .equipes-header-stats {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS - ÉTATS INITIAUX
   ═══════════════════════════════════════════════════════════════════ */

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
}

.valeur-card {
  opacity: 0;
  transform: translateY(50px);
}

.timeline-item {
  opacity: 0;
  transform: translateY(30px);
}

.equipe-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.approche-card {
  opacity: 0;
  transform: translateY(40px);
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  
  .fade-in-up,
  .stagger-item,
  .valeur-card,
  .timeline-item,
  .equipe-card,
  .approche-card {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .hero-identite .hero-title .char,
  .hero-identite .hero-subtitle,
  .hero-identite .hero-stats,
  }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bleu);
  color: var(--color-white);
  padding: 12px 24px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* CSS Inspirations/Réalisations : chargé via le partial parts/inspirations-realisations.php */
