/* =========================================================
   Wake Up Agency — Feuille de style
   Charte : blanc dominant · encre · accent orange
   Typo : Space Grotesk (titres) · Hanken Grotesk (texte)
   ========================================================= */

:root {
  --orange:      #FF5C35;
  --orange-dark: #E84D26;
  --ink:         #121110;
  --ink-soft:    #33302D;
  --deck:        #211d1b;
  --white:       #ffffff;
  --panel:       #F4F2EF;
  --panel-2:     #ECEAE6;
  --line:        #E6E4E1;
  --line-soft:   #EFEDEA;
  --gray-600:    #6B6B6B;
  --gray-400:    #9A9A9A;
  --gray-300:    #C9C9C9;
  --text:        #121110;
  --text-muted:  #4a4744;
  --red:         #E5484D;
  --green:       #1a9a5f;

  --font-head: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:   8px;
  --radius-sm:6px;
  --maxw:     1160px;
  --header-h: 78px;

  /* Barre de navigation flottante : hauteur réelle, décalage bas et zone
     réservée. `--nav-safe` est l'espace qu'aucun contenu ne doit occuper,
     pour que rien ne passe jamais sous la barre. */
  --nav-h:      64px;
  --nav-bottom: 22px;
  --nav-safe:   calc(var(--nav-h) + var(--nav-bottom) + 18px);

  /* Respiration verticale des sections : elle suit la hauteur d'écran pour
     que le contenu tienne au-dessus de la barre, même sur un portable. */
  --section-pad:       clamp(56px, 8vh, 96px);
  --section-pad-tight: clamp(40px, 6vh, 64px);

  --shadow-card:  0 14px 34px rgba(18,17,16,.10);
  --shadow-menu:  0 20px 50px rgba(18,17,16,.14);
  --shadow-hero:  0 18px 60px rgba(0,0,0,.45);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; scroll-padding-top: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -.025em; line-height: 1; }

/* ---------- Layout helpers ---------- */
/* `width: 100%` est indispensable : les sections sont des conteneurs flex, et
   sans elle le conteneur se réduit à la largeur de son contenu puis se
   recentre — les sections se retrouvent alors désalignées entre elles. */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section, .section--tight {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
}
/* La réserve basse (`--nav-safe`) garde la barre de navigation flottante
   libre de tout contenu : les sections sont centrées dans l'espace restant. */
.section { padding: var(--section-pad) 0 calc(var(--section-pad) + var(--nav-safe)); }
.section--tight { padding: var(--section-pad-tight) 0 calc(var(--section-pad-tight) + var(--nav-safe)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: .2em; text-transform: uppercase; color: var(--gray-400);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.eyebrow--orange { color: var(--orange); }

.section-head { margin-bottom: clamp(24px, 3.4vh, 44px); }
.section-head .kicker { display: flex; align-items: baseline; gap: 14px; }
.section-head .kicker .num { font: 700 13px/1 var(--font-head); color: var(--orange); letter-spacing: .06em; }
/* Le titre suit aussi la hauteur d'écran : sur un portable peu haut, il se
   resserre pour laisser tenir le contenu au-dessus de la barre de nav. */
.section-head h2 { font-size: clamp(30px, min(4.4vw, 5.2vh), 46px); margin-top: clamp(8px, 1.6vh, 14px); }
.section-head p { font: 400 16px/1.65 var(--font-body); color: var(--text-muted); max-width: 620px; margin-top: 18px; }

.accent-bar { width: 46px; height: 2px; background: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 var(--font-body);
  border: none; border-radius: var(--radius);
  padding: 15px 28px; cursor: pointer; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary   { background: var(--orange); color: #fff; }
.btn--primary:hover   { background: var(--orange-dark); }
.btn--ink       { background: var(--ink); color: #fff; }
.btn--ink:hover       { background: var(--ink-soft); }
.btn--outline   { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); padding: 13.5px 26px; }
.btn--outline:hover   { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); padding: 13.5px 26px; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost     { background: transparent; color: var(--ink); padding: 15px 6px; }
.btn--ghost:hover     { color: var(--orange); }
.btn--sm { font-size: 13px; padding: 10px 18px; border-radius: var(--radius-sm); }
.btn--lg { font-size: 17px; padding: 19px 36px; }
.btn:disabled { background: var(--line-soft); color: var(--gray-400); cursor: not-allowed; }
.btn--scale:hover { transform: scale(1.04); }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink); color: #fff; position: relative; overflow: hidden;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex; flex-direction: column;
}
.hero .blob-1 { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: var(--orange); top: -200px; right: -150px; }
.hero .blob-2 { position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); bottom: -240px; left: 34%; }
.hero .inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center;
  flex: 1;
  /* Uniquement le vertical : le raccourci `padding` écraserait la gouttière
     latérale de `.container` et collerait le texte aux bords de l'écran. */
  padding-top: clamp(56px, 8vh, 96px);
  padding-bottom: clamp(44px, 7vh, 84px);
}
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(52px, 7.4vw, 88px); line-height: .92; letter-spacing: -.045em; margin-top: 22px; }
.hero .lead { font: 400 19px/1.58 var(--font-body); color: rgba(255,255,255,.72); margin-top: 26px; max-width: 540px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-points li {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78); font: 600 13px/1 var(--font-body);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 10px 14px;
}
.hero-points span { color: var(--orange); font-family: var(--font-head); }
.hero-visual {
  min-height: 460px; border-radius: calc(var(--radius) * 1.25); position: relative; overflow: visible;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.20), transparent 24%),
    linear-gradient(135deg, rgba(255,92,53,.95), rgba(255,92,53,.18) 54%, rgba(255,255,255,.06));
  box-shadow: var(--shadow-hero);
  padding: 20px;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); pointer-events: none;
}
.hero-card--main {
  height: 100%; min-height: 420px; border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    linear-gradient(180deg, rgba(18,17,16,0) 25%, rgba(18,17,16,.82) 100%),
    repeating-linear-gradient(135deg, #302b27 0 16px, #211d1b 16px 32px);
  display: flex; align-items: flex-end; padding: 28px;
}
.hero-visual .badge {
  position: absolute; top: 26px; left: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 11px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  background: rgba(18,17,16,.58); backdrop-filter: blur(6px);
  padding: 10px 15px; border-radius: 999px; color: #fff;
}
.hero-visual .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,92,53,.18); }
.hero-visual .cap { font: 600 15px/1.45 var(--font-head); color: rgba(255,255,255,.88); letter-spacing: .01em; max-width: 280px; }
.hero-card--floating {
  position: absolute; right: -24px; bottom: 76px; width: 230px;
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.hero-card--floating .mini-k { font: 700 11px/1 var(--font-body); color: var(--orange); letter-spacing: .16em; text-transform: uppercase; }
.hero-card--floating strong { display: block; font: 700 22px/1.08 var(--font-head); margin-top: 12px; }
.hero-card--floating span:last-child { display: block; color: var(--gray-600); font: 400 13px/1.45 var(--font-body); margin-top: 10px; }
.hero-score {
  position: absolute; left: -26px; top: 72px; width: 150px; border-radius: var(--radius);
  background: var(--orange); color: #fff; padding: 20px 18px; box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.hero-score strong { display: block; font: 700 38px/.9 var(--font-head); letter-spacing: -.04em; }
.hero-score span { display: block; font: 600 12px/1.35 var(--font-body); margin-top: 10px; color: rgba(255,255,255,.86); }

/* ---------- Stats strip ---------- */
.stats { border-bottom: 1px solid var(--line); }
.hero-stats {
  position: relative; z-index: 2; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: none;
  background: rgba(18,17,16,.34); backdrop-filter: blur(10px);
}
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 24px; text-align: center; border-right: 1px solid var(--line); }
.hero-stats .stat { border-right-color: rgba(255,255,255,.12); padding: clamp(22px, 3vh, 34px) 24px; }
.stat:last-child { border-right: none; }
.stat .num { font: 700 44px/1 var(--font-head); letter-spacing: -.02em; }
.stat .num span { color: var(--orange); }
.stat .lbl { font: 400 13.5px/1.4 var(--font-body); color: var(--gray-600); margin-top: 8px; }
.hero-stats .stat .lbl { color: rgba(255,255,255,.66); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--panel); border-radius: var(--radius); padding: clamp(18px, 2.4vh, 26px) 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration: none; color: var(--ink);
  display: block; position: relative; border: 1px solid transparent; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #FF5C35, #E84D26);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(255,92,53,.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ic {
  width: 48px; height: 48px; padding: 11px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange); background: rgba(255,92,53,.1);
  transition: background .18s ease, color .18s ease;
}
.service-card:hover .ic { background: var(--orange); color: #fff; }
.service-card h3 { font: 700 16px/1.2 var(--font-head); margin-top: 16px; transition: color .18s ease; }
.service-card:hover h3 { color: var(--orange); }
.service-card p { font: 400 13px/1.55 var(--font-body); color: var(--gray-600); margin-top: 7px; }
.service-card .more { display: inline-flex; align-items: center; gap: 6px; font: 600 13px/1 var(--font-body); color: var(--orange); margin-top: 16px; }
.service-card .more svg { width: 14px; height: 14px; transition: transform .18s ease; }
.service-card:hover .more svg { transform: translateX(3px); }

/* ---------- Sections sombres (alternance noir / blanc) ---------- */
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: rgba(255,255,255,.72); }
.section--dark .section-head .eyebrow { color: rgba(255,255,255,.55); }

/* ---------- Approche / process (éditorial animé) ---------- */
.approche { position: relative; overflow: hidden; }
/* halo orange organique en fond, en pulsation lente */
.approche__glow {
  position: absolute; z-index: 0; width: 640px; height: 640px; border-radius: 50%;
  right: -200px; top: -180px; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,92,53,.30), rgba(255,92,53,0) 66%);
  animation: glowPulse 9s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: .9; }
  50%      { transform: scale(1.15); opacity: .55; }
}
.approche .container { position: relative; z-index: 1; }
.approche .section-head { margin-bottom: 40px; }
.approche .section-head h2 em { color: var(--orange); font-style: normal; }

/* alignement horizontal : les 3 étapes côte à côte */
.approche .steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.step {
  position: relative; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}
/* trait d'accent qui se déploie au survol */
.step::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 46px;
  background: var(--orange); transform-origin: left;
  transition: width .4s cubic-bezier(.6,0,.2,1);
}
.step:hover::before { width: 100%; }

/* icône : cercle ajouré + trait fin, coloration orange au survol */
.step__icon {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: clamp(66px, 6vw, 82px); height: clamp(66px, 6vw, 82px); margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  color: rgba(255,255,255,.85);
  transition: color .4s ease, border-color .4s ease, transform .4s ease, background-color .4s ease;
}
/* halo diffus qui s'allume au survol */
.step__icon::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,53,.35), rgba(255,92,53,0) 70%);
  opacity: 0; transition: opacity .4s ease;
}
.step__icon svg { position: relative; width: 46%; height: 46%; }
.step:hover .step__icon {
  color: var(--orange); border-color: var(--orange);
  background-color: rgba(255,92,53,.06); transform: translateY(-4px);
}
.step:hover .step__icon::before { opacity: 1; }

.step__label {
  display: inline-block;
  font: 600 12px/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 14px;
}
.step h3 {
  font: 700 clamp(22px, 2.4vw, 28px)/1.1 var(--font-head); letter-spacing: -.025em;
  margin: 0 0 12px; color: #fff; transition: transform .35s ease;
}
.step:hover h3 { transform: translateX(6px); }
.step p { font: 400 15px/1.65 var(--font-body); color: rgba(255,255,255,.66); }

/* animation d'entrée : tracé progressif des icônes */
.step__icon svg > * { stroke-dasharray: 240; stroke-dashoffset: 240; }
.step.in .step__icon svg > * { animation: iconDraw 1.1s ease forwards; animation-delay: var(--reveal-delay); }
@keyframes iconDraw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .approche__glow { animation: none; }
  .step__icon svg > * { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
}

/* ---------- L'équipe ---------- */
/* Cartes alignées horizontalement, chacune au format paysage */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; perspective: 1400px; }

/* Carte au format paysage avec animation de retournement (flip) */
.team-card {
  /* Inclinaison 3D pilotée par le curseur (--rx / --ry mis à jour en JS) */
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .3s ease-out;
  background: transparent; border: none; border-radius: var(--radius);
  cursor: pointer; outline: none;
}
.team-card__inner {
  position: relative; width: 100%; min-height: clamp(196px, 24vh, 260px);
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .75, .2, 1);
}
.team-card:focus-visible .team-card__inner,
.team-card.is-flipped .team-card__inner { transform: rotateY(180deg); }
/* Le retournement au survol est réservé aux pointeurs fins : sur tactile, le
   `:hover` reste « collé » après un appui et bloquerait la carte retournée. */
@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-card__inner { transform: rotateY(180deg); }
}

.team-card__face {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease-out;
}
/* Profondeur accrue au survol pour renforcer l'effet 3D */
.team-card:focus-visible .team-card__face,
.team-card.is-flipped .team-card__face {
  box-shadow: 0 26px 50px -22px rgba(20,16,14,.45), 0 8px 20px -12px rgba(20,16,14,.3);
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover .team-card__face {
    box-shadow: 0 26px 50px -22px rgba(20,16,14,.45), 0 8px 20px -12px rgba(20,16,14,.3);
  }
}
.team-card__back {
  transform: rotateY(180deg);
  border-color: transparent; align-items: center;
  background: linear-gradient(150deg, var(--ink), var(--ink-soft));
  color: #fff;
}
.team-card:focus-visible { border-radius: var(--radius); box-shadow: 0 0 0 3px rgba(255,92,53,.45); }

/* Portrait en vignette latérale (format paysage) */
.team-card .portrait {
  flex: 0 0 40%; align-self: stretch; display: block; position: relative; overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--panel-2) 0 14px, var(--panel) 14px 28px);
}
.team-card .portrait::before {
  content: ""; position: absolute; width: 118px; height: 118px; border-radius: 50%;
  left: 50%; top: 36px; transform: translateX(-50%); background: rgba(255,255,255,.72);
}
.team-card .portrait::after {
  content: ""; position: absolute; width: 180px; height: 120px; border-radius: 90px 90px 0 0;
  left: 50%; bottom: -34px; transform: translateX(-50%); background: rgba(255,255,255,.58);
}
.team-card .portrait--orange { background: linear-gradient(135deg, #FF5C35, #E84D26); }
.team-card .portrait--dark { background: linear-gradient(160deg, #211d1b, #4a4744); }
.team-card .portrait--neutral { background: linear-gradient(135deg, #2E2A27, #FF5C35 140%); }
.team-card .body {
  flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 20px 22px;
}
.team-card__back .body { padding: 22px 24px; }
.team-card__back h3 { color: #fff; }
.team-card__hint {
  margin-top: 16px; font: 600 11px/1 var(--font-body); letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange);
}
.team-card__list {
  list-style: none; margin-top: 14px; display: grid; gap: 9px;
}
.team-card__list li {
  position: relative; padding-left: 20px;
  font: 400 13.5px/1.4 var(--font-body); color: rgba(255,255,255,.82);
}
.team-card__list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--orange);
}
.team-card__quote {
  margin-top: 18px; font: 500 14px/1.5 var(--font-head); color: rgba(255,255,255,.92);
}
.tag {
  display: inline-block; align-self: flex-start;
  font: 600 11px/1 var(--font-body); letter-spacing: .06em;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
}
.tag--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.tag--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.team-card h3 { font: 700 18px/1.2 var(--font-head); margin-top: 14px; }
.team-card p { font: 400 13.5px/1.55 var(--font-body); color: var(--gray-600); margin-top: 8px; }

/* ---------- Témoignages ---------- */
.temoins {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vh, 20px); align-items: stretch;
  perspective: 1200px;
}
/* Deux rangées de cartes : tout est dimensionné en vh pour que la grille
   entière reste au-dessus de la barre de navigation. */
.temoin {
  --sheen: rgba(255,255,255,.9);
  min-height: clamp(150px, 22vh, 240px); color: var(--ink);
  background: var(--panel); border-radius: var(--radius);
  padding: clamp(16px, 2.6vh, 32px) clamp(20px, 2.4vw, 34px);
  position: relative; overflow: hidden;
}
.temoin.dark { --sheen: rgba(255,255,255,.16); background: var(--ink); color: #fff; }
.section--dark .temoin.dark { background: var(--deck); border: 1px solid rgba(255,255,255,.1); }
.temoin.dark .blob { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--orange); right: -100px; top: -100px; }
.temoin .quote { font: 700 clamp(34px, 5vh, 52px)/.6 var(--font-head); color: var(--orange); display: block; position: relative; z-index: 2; }
.temoin p { font: 500 clamp(14.5px, 2.1vh, 18px)/1.45 var(--font-head); margin-top: clamp(10px, 1.8vh, 16px); position: relative; z-index: 2; }
.temoin .who { display: flex; align-items: center; gap: clamp(10px, 1.2vw, 14px); margin-top: clamp(14px, 2.8vh, 26px); position: relative; z-index: 2; }
.temoin .who .avatar { width: clamp(34px, 4.6vh, 44px); height: clamp(34px, 4.6vh, 44px); border-radius: 50%; flex: none; background: repeating-linear-gradient(135deg, #DDD9D4 0 6px, var(--panel-2) 6px 12px); }
.temoin.dark .who .avatar { background: repeating-linear-gradient(135deg, #3a3532 0 6px, #2a2724 6px 12px); }
.temoin .who .name { font: 700 14px/1.2 var(--font-body); }
.temoin .who .role { font: 400 12.5px/1.3 var(--font-body); color: var(--gray-600); }
.temoin.dark .who .role { color: rgba(255,255,255,.6); }

/* --- Apparition : la carte se redresse, puis son contenu s'installe ---
   L'entrée passe par une animation (et non la transition générique de
   .reveal) pour laisser les transitions de survol libres une fois posée :
   `backwards` évite de figer le transform final, qui bloquerait le survol. */
.temoin.reveal {
  opacity: 0; transform: none;
  transform-origin: 50% 100%;
  transition:
    transform .5s cubic-bezier(.2,.8,.3,1),
    box-shadow .5s ease-out;
  will-change: transform, opacity;
}
.temoin.reveal.in {
  opacity: 1;
  animation: temoinIn .9s cubic-bezier(.21,.98,.32,1) var(--reveal-delay, 0ms) backwards;
}
@keyframes temoinIn {
  0%   { opacity: 0; transform: translateY(48px) rotateX(14deg) scale(.94); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

/* Guillemet, texte et signature entrent en cascade derrière la carte */
.temoin.reveal.in .quote {
  animation: temoinQuoteIn .75s cubic-bezier(.18,1.35,.4,1) calc(var(--reveal-delay, 0ms) + 240ms) backwards;
}
@keyframes temoinQuoteIn {
  from { opacity: 0; transform: translateY(-18px) rotate(-12deg) scale(.5); }
  to   { opacity: 1; transform: none; }
}
.temoin.reveal.in p {
  animation: temoinFadeUp .7s cubic-bezier(.2,.8,.3,1) calc(var(--reveal-delay, 0ms) + 330ms) backwards;
}
.temoin.reveal.in .who {
  animation: temoinFadeUp .7s cubic-bezier(.2,.8,.3,1) calc(var(--reveal-delay, 0ms) + 430ms) backwards;
}
@keyframes temoinFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.temoin.reveal.in .blob {
  animation: temoinBlobIn 1s cubic-bezier(.2,.9,.3,1) calc(var(--reveal-delay, 0ms) + 180ms) backwards;
}
@keyframes temoinBlobIn {
  from { transform: scale(.2) translate(40px, 40px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* --- Survol : relief 3D vers le curseur, lueur et reflet --- */
.temoin .blob,
.temoin .quote,
.temoin .who .avatar {
  transition: transform .45s cubic-bezier(.2,.8,.3,1);
}
/* Lueur orange qui suit le curseur */
.temoin::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255,92,53,.18), transparent 62%);
  opacity: 0; transition: opacity .35s ease-out;
}
/* Reflet qui balaie la carte */
.temoin::before {
  content: ""; position: absolute; top: -60%; left: -80%; width: 42%; height: 220%;
  z-index: 4; pointer-events: none; opacity: 0;
  background: linear-gradient(90deg, transparent, var(--sheen), transparent);
  transform: rotate(16deg);
}
/* Sélecteur descendant : il faut passer devant le `transform: none`
   de `.reveal.in`, déclaré plus bas dans la feuille. */
.temoins .temoin:focus-within {
  z-index: 2;
  transform: translateY(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  box-shadow: 0 28px 50px -24px rgba(18,17,16,.5);
}
.temoin:focus-within::after { opacity: 1; }
/* Relief et reflet au survol : pointeurs fins uniquement — sur tactile le
   `:hover` resterait figé sur la dernière carte touchée. */
@media (hover: hover) and (pointer: fine) {
  .temoins .temoin:hover {
    z-index: 2;
    transform: translateY(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    box-shadow: 0 28px 50px -24px rgba(18,17,16,.5);
  }
  .temoin:hover::after { opacity: 1; }
  .temoin:hover::before { animation: temoinSheen .95s ease-out; }
}
@keyframes temoinSheen {
  0%   { opacity: 0; transform: rotate(16deg) translateX(0); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(16deg) translateX(420%); }
}
.temoin:focus-within .quote { transform: translateY(-4px) scale(1.14) rotate(-5deg); }
.temoin:focus-within .who .avatar { transform: scale(1.08) rotate(-8deg); }
@media (hover: hover) and (pointer: fine) {
  .temoin:hover .quote { transform: translateY(-4px) scale(1.14) rotate(-5deg); }
  .temoin:hover .blob { transform: scale(1.18) translate(-14px, 14px); }
  .temoin:hover .who .avatar { transform: scale(1.08) rotate(-8deg); }
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; padding: 22px 4px; cursor: pointer; text-align: left; color: var(--ink);
  transition: color .15s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-q .q-text { font: 600 17px/1.3 var(--font-head); color: inherit; }
.faq-q .q-ic {
  width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.faq-q .q-ic svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .q-ic { background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a p { font: 400 14.5px/1.65 var(--font-body); color: var(--text-muted); padding: 0 60px 22px 4px; max-width: 720px; }

/* ---------- CTA ---------- */
.cta-band {
  border-radius: var(--radius); overflow: hidden; background: var(--orange); color: #fff; position: relative;
}
.cta-band .ring { position: absolute; width: 380px; height: 380px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.25); top: -160px; right: -120px; }
.cta-band .disc { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(18,17,16,.12); bottom: -120px; left: -80px; }
.cta-band .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 52px 64px; position: relative; z-index: 2;
}
.cta-band .left { display: flex; align-items: center; gap: 28px; }
.cta-band img { width: 76px; height: 76px; object-fit: contain; flex: none; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.05; letter-spacing: -.02em; }
.cta-band .sub { font: 400 15px/1.5 var(--font-body); color: rgba(255,255,255,.9); margin-top: 8px; }

/* ---------- Contact — section claire « artistique » ---------- */
.section--contact {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(255,92,53,.10), transparent 42%),
    radial-gradient(circle at 2% 98%, rgba(255,92,53,.06), transparent 40%),
    var(--white);
}
.section--contact .container { position: relative; z-index: 2; width: 100%; }

/* Halo orange léger qui respire */
.contact-glow {
  position: absolute; right: -8%; top: -18%;
  width: 560px; height: 560px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255,92,53,.16), transparent 62%);
  filter: blur(26px);
  animation: footGlow 9s ease-in-out infinite;
}
/* Trame diagonale très discrète pour la profondeur */
.contact-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .7;
  background-image: repeating-linear-gradient(-45deg, rgba(18,17,16,.018) 0 1px, transparent 1px 26px);
}
/* Indice de section surdimensionné en filigrane */
.contact-mark {
  position: absolute; right: 2%; bottom: -6%; z-index: 1; pointer-events: none;
  font: 700 clamp(160px, 34vw, 380px)/.8 var(--font-head); letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(18,17,16,.045);
}

.contact-accent {
  background: linear-gradient(100deg, var(--orange) 0%, #ff8a63 55%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }

/* Champs éditoriaux : soulignés, sur fond clair */
.form-field { margin-bottom: clamp(10px, 2.2vh, 26px); }
.form-field label { display: block; font: 600 11px/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--gray-600); margin-bottom: clamp(6px, 1.2vh, 10px); }
.form-field input, .form-field textarea {
  width: 100%; font: 400 16px/1.4 var(--font-body); color: var(--ink); background: transparent;
  border: none; border-bottom: 1.5px solid var(--line); border-radius: 0;
  padding: clamp(8px, 1.6vh, 12px) 2px; outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-400); }
.form-field textarea { line-height: 1.55; resize: vertical; min-height: clamp(64px, 11vh, 108px); }
.form-field input:focus, .form-field textarea:focus {
  border-bottom-color: var(--orange); box-shadow: 0 2px 0 0 rgba(255,92,53,.35);
}
.form-field.invalid input, .form-field.invalid textarea { border-bottom-color: var(--red); }
.field-error { display: none; align-items: center; gap: 6px; font: 500 12.5px/1 var(--font-body); color: var(--red); margin-top: 9px; }
.field-error svg { width: 13px; height: 13px; }
.form-field.invalid .field-error { display: flex; }

/* Champ « besoin » : champ standard, avec menu déroulant stylé */
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer;
  font: 600 15px/1.2 var(--font-body); color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: clamp(11px, 1.8vh, 16px) 48px clamp(11px, 1.8vh, 16px) 18px; outline: none;
  box-shadow: 0 1px 2px rgba(18,17,16,.04);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.select-wrap select:hover { border-color: rgba(255,92,53,.55); }
.select-wrap select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,92,53,.16); }
.select-wrap select option { color: var(--ink); font-weight: 500; }
.select-caret {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--orange); pointer-events: none;
  transition: transform .15s ease;
}
.select-wrap select:focus + .select-caret { transform: translateY(-50%) rotate(180deg); }

.form-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-ok { display: none; align-items: center; gap: 8px; font: 600 13.5px/1 var(--font-body); color: var(--green); }
.form-ok.show { display: inline-flex; }
.form-ok svg { width: 16px; height: 16px; }
.form-ok.error { color: var(--orange); }

/* Fiche « besoin » : carte claire mise en avant */
.contact-aside {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(18px, 3vh, 28px) clamp(22px, 2.4vw, 32px); overflow: hidden;
  box-shadow: var(--shadow-card);
}
/* Accent orange en haut de la fiche */
.contact-aside::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff8a63);
}
.contact-aside h3 { font: 700 22px/1.2 var(--font-head); }
.contact-aside .lead { font: 400 14.5px/1.6 var(--font-body); color: var(--text-muted); margin-top: 10px; }

/* Canaux de contact directs, intégrés dans le récap */
.contact-channels {
  display: flex; flex-direction: column; gap: clamp(6px, 1.1vh, 8px);
  margin-top: clamp(12px, 2.4vh, 18px); padding-top: clamp(10px, 2.2vh, 16px);
  border-top: 1px solid var(--line);
}
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(7px, 1.4vh, 10px) 14px; text-decoration: none; color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-channel:hover { transform: translateY(-2px); border-color: var(--orange); background: rgba(255,92,53,.04); }
.contact-channel__ic {
  flex: none; width: clamp(34px, 4.8vh, 40px); height: clamp(34px, 4.8vh, 40px); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(135deg, #FF5C35, #E84D26);
  box-shadow: 0 8px 18px rgba(255,92,53,.28);
}
.contact-channel__ic svg { width: 20px; height: 20px; }
.contact-channel__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-channel__label { font: 700 10.5px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.contact-channel__value { font: 600 14.5px/1.3 var(--font-body); color: var(--ink); overflow-wrap: anywhere; }

/* Fiche d'information du besoin sélectionné */
.besoin-fiche { animation: fiche-in .4s ease; flex: 1; display: flex; flex-direction: column; }
.besoin-fiche__ic {
  width: clamp(40px, 5.6vh, 50px); height: clamp(40px, 5.6vh, 50px); padding: 13px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(135deg, #FF5C35, #E84D26);
  box-shadow: 0 12px 26px rgba(255,92,53,.32);
}
.besoin-fiche__tag { display: inline-block; margin-top: clamp(12px, 2.2vh, 20px); padding: 5px 11px; border-radius: 999px; background: rgba(255,92,53,.1); font: 700 10.5px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.besoin-fiche h3 { font: 700 clamp(22px, 2.6vw, 26px)/1.15 var(--font-head); margin-top: 12px; }
.besoin-fiche .lead { font: 400 14.5px/1.55 var(--font-body); color: var(--text-muted); margin-top: 10px; }
.besoin-fiche__list {
  list-style: none; margin-top: clamp(12px, 2.4vh, 18px);
  display: flex; flex-direction: column; gap: clamp(7px, 1.4vh, 11px);
  padding-top: clamp(10px, 2vh, 16px); border-top: 1px solid var(--line); flex: 1;
}
.besoin-fiche__list li { position: relative; padding-left: 30px; font: 500 14.5px/1.45 var(--font-body); color: var(--ink); }
.besoin-fiche__list li::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,92,53,.14);
}
.besoin-fiche__list li::after {
  content: ""; position: absolute; left: 7px; top: 4px;
  width: 4px; height: 8px; border: solid var(--orange); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@keyframes fiche-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .besoin-fiche { animation: none; }
  .contact-glow { animation: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(255,92,53,.18), transparent 46%),
    linear-gradient(180deg, #0d0c0b 0%, var(--ink) 100%);
  color: #fff;
  min-height: 100svh;
  scroll-snap-align: start; scroll-snap-stop: always;
  display: flex; align-items: stretch;
}
/* Halo orange qui « respire » derrière la call to action */
.foot-glow {
  position: absolute; left: -8%; bottom: -22%;
  width: 620px; height: 620px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,92,53,.30), transparent 62%);
  filter: blur(20px);
  animation: footGlow 8s ease-in-out infinite;
}
@keyframes footGlow {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.12); opacity: 1; }
}
/* Trame diagonale très discrète pour la profondeur */
.foot-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 26px);
}
.site-footer .container { position: relative; z-index: 1; display: flex; flex-direction: column; width: 100%; padding-top: 80px; padding-bottom: 32px; }

/* Zone principale : accroche + colonnes de liens */
.foot-top {
  flex: 1; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 64px; align-items: center;
  padding-bottom: 56px;
}
.foot-cta .eyebrow { margin-bottom: 26px; }
.foot-cta h2 {
  font-size: clamp(48px, 7.2vw, 92px); line-height: .92; letter-spacing: -.045em;
}
.foot-cta__accent {
  background: linear-gradient(100deg, var(--orange) 0%, #ff8a63 55%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot-cta p { font: 400 18px/1.6 var(--font-body); color: rgba(255,255,255,.72); max-width: 440px; margin: 28px 0 40px; }

/* Call to action mise en avant */
.foot-cta__actions { display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap; }
.foot-cta__btn {
  position: relative;
  box-shadow: 0 18px 44px rgba(255,92,53,.34);
  transition: transform .2s ease, box-shadow .2s ease, background .15s ease;
}
.foot-cta__btn svg { width: 19px; height: 19px; transition: transform .2s ease; }
.foot-cta__btn:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(255,92,53,.46); }
.foot-cta__btn:hover svg { transform: translateX(5px); }
.foot-cta__mail {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 15px/1 var(--font-body); color: rgba(255,255,255,.72);
  text-decoration: none; transition: color .15s ease;
}
.foot-cta__mail svg { width: 17px; height: 17px; color: var(--orange); }
.foot-cta__mail:hover { color: #fff; }

.foot-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; }
.foot-col .h { font: 600 14px/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font: 400 17px/1 var(--font-body); color: rgba(255,255,255,.75); text-decoration: none; transition: color .15s ease; }
.foot-col a:hover { color: #fff; }
.foot-col .info { display: flex; flex-direction: column; gap: 12px; font: 400 14px/1.4 var(--font-body); color: rgba(255,255,255,.75); }
.foot-col .info a:hover { color: #fff; }

/* Réseaux sociaux */
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .15s ease, border-color .15s ease; }
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.socials svg { width: 17px; height: 17px; }

/* Barre du bas */
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-brand img { width: 40px; height: 40px; object-fit: contain; }
.foot-brand span { font: 400 12.5px/1 var(--font-body); color: rgba(255,255,255,.45); }
.foot-meta { display: flex; align-items: center; gap: 32px; }
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom .links a { font: 400 12.5px/1 var(--font-body); color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s ease; }
.foot-bottom .links a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .7s cubic-bezier(.16, .84, .44, 1),
    transform .7s cubic-bezier(.16, .84, .44, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Directional / effect variants */
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--zoom  { transform: scale(.9); }
.reveal--down  { transform: translateY(-30px); }
.reveal--left.in,
.reveal--right.in,
.reveal--zoom.in,
.reveal--down.in { transform: none; }

/* ========================================================= */
/*  Responsive                                               */
/* ========================================================= */
/* ---------- Barre de navigation flottante (icônes) ---------- */
.bottom-nav {
  position: fixed;
  left: 50%;
  /* `env()` garde la barre au-dessus de l'indicateur d'accueil (iPhone). */
  bottom: calc(var(--nav-bottom) + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(18, 17, 16, .82);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 40px rgba(18, 17, 16, .32);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.bottom-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}
.bottom-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: rgba(255, 255, 255, .62);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.bottom-nav__link svg { width: 22px; height: 22px; }
@media (hover: hover) and (pointer: fine) {
  .bottom-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
  }
}
.bottom-nav__link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.bottom-nav__link.is-active {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(255, 92, 53, .4);
}

/* ---------- Écrans peu hauts (fenêtre non maximisée, petit portable) ----------
   On resserre la respiration verticale et la réserve de la barre pour que
   les sections denses tiennent encore entièrement au-dessus d'elle. */
@media (max-height: 720px) {
  :root {
    --section-pad: 40px;
    --section-pad-tight: 32px;
    --nav-safe: calc(var(--nav-h) + var(--nav-bottom) + 10px);
  }
}

/* ---------- Mobile & tactile : scroll libre ----------
   Le défilement section par section (snap CSS + pilotage JS) est réservé
   aux grands écrans avec souris. Ici la page défile naturellement : plus de
   snap, plus de hauteur d'écran imposée, le contenu dicte la hauteur. */
@media (max-width: 960px), (hover: none) and (pointer: coarse) {
  html { scroll-snap-type: none; }
  .section, .section--tight, .hero, .site-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
  .section, .section--tight, .site-footer { min-height: 0; }
  /* Sections plus compactes : la réserve basse de la barre suffit à espacer. */
  :root { --section-pad: 44px; --section-pad-tight: 36px; }
}

@media (max-width: 960px) {
  .hero .inner { grid-template-columns: 1fr; gap: 42px; padding-top: 64px; padding-bottom: 56px; }
  /* Le disque orange se replie dans l'angle : en une colonne, il passait
     derrière le titre et la promesse, qui devenaient illisibles. */
  .hero .blob-1 { width: 300px; height: 300px; top: -190px; right: -110px; }
  .hero .blob-2 { width: 320px; height: 320px; bottom: -200px; left: auto; right: -120px; }
  .hero-visual { min-height: 360px; }
  .hero-card--main { min-height: 320px; }
  .hero-card--floating { right: 18px; bottom: 42px; }
  .hero-score { left: auto; right: 18px; top: 18px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .hero-stats .stat:nth-child(1), .hero-stats .stat:nth-child(2) { border-bottom-color: rgba(255,255,255,.12); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approche .steps { grid-template-columns: 1fr; gap: 8px; }
  .step { padding-top: 22px; }
  .step__num { font-size: clamp(72px, 22vw, 120px); }
  .approche__word { font-size: clamp(96px, 34vw, 200px); bottom: -6vw; }
  .team-grid { grid-template-columns: 1fr; }
  /* Les deux faces sont superposées en absolu : la hauteur ne peut pas suivre
     leur contenu, il faut donc réserver de quoi loger la plus haute (le dos et
     sa liste), sinon le texte est rogné. */
  .team-card__inner { min-height: 250px; }
  .team-card .body { padding: 24px 26px; }
  .temoins { grid-template-columns: repeat(2, 1fr); }
  .temoin { min-height: 240px; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-top { grid-template-columns: 1fr; gap: 44px; padding-bottom: 44px; }
}


@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero h1 { font-size: clamp(44px, 14vw, 58px); }
  .hero .lead { font-size: 17px; }
  .hero .actions .btn { width: 100%; }
  /* La vignette passe en colonne : la carte « Production » se place à la suite
     de la carte principale au lieu de la recouvrir. Superposées, elles se
     chevauchaient d'autant plus que le texte se replie sur les petits écrans. */
  .hero-visual { min-height: 0; display: flex; flex-direction: column; gap: 14px; padding: 16px; }
  .hero-visual::before { inset: 14px; }
  .hero-visual .badge { top: 20px; left: 20px; }
  .hero-visual .cap { max-width: none; }
  .hero-card--main { min-height: 340px; padding: 24px; }
  .hero-card--floating { position: static; width: auto; padding: 18px 20px; }
  /* Sous la pastille « Studio créatif » : côte à côte, les deux se recouvrent
     sur les écrans les plus étroits. */
  .hero-score { left: auto; right: 30px; top: 80px; width: 124px; padding: 16px 15px; }
  .hero-score strong { font-size: 32px; }
  /* Le disque remonte encore : il doit passer au-dessus du surtitre orange,
     qui disparaîtrait sinon dans l'aplat de même couleur. */
  .hero .blob-1 { width: 300px; height: 300px; top: -250px; right: -70px; }
  .services-grid { grid-template-columns: 1fr; }
  /* Les chiffres clés restent sur deux colonnes : empilés, ils imposaient
     un écran entier de défilement avant les services. */
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat, .hero-stats .stat { padding: 22px 12px; }
  .stat .num { font-size: 34px; }
  .stat .lbl { font-size: 12.5px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .foot-links { grid-template-columns: 1fr; gap: 28px; }
  .cta-band .left { flex-direction: column; align-items: flex-start; gap: 18px; }
  .temoins { grid-template-columns: 1fr; }
  .temoin, .contact-aside { padding: 26px 24px; }
  .team-card__inner { min-height: 270px; }
  .team-card .portrait { flex-basis: 36%; }
  .team-card .body { padding: 18px 18px; }
  .team-card__back .body { padding: 20px 20px; }
  /* Barre plus compacte : la réserve basse suit automatiquement. */
  :root { --nav-h: 56px; --nav-bottom: 14px; }
  .bottom-nav { gap: 2px; padding: 6px; }
  .bottom-nav__link { width: 42px; height: 42px; }
  .bottom-nav__link svg { width: 20px; height: 20px; }
  .foot-cta__actions { gap: 16px; }
  .foot-cta__btn { width: 100%; }
  .foot-glow { width: 420px; height: 420px; bottom: -30%; }
}

/* ---------- Tactile : cibles d'appui confortables ----------
   Les liens de pied de page ne faisaient que 13 à 19 px de haut : on les
   étire à 44 px, la taille minimale visée pour un doigt. */
@media (hover: none) and (pointer: coarse), (max-width: 560px) {
  .foot-col ul { gap: 2px; }
  .foot-col a,
  .foot-bottom .links a,
  .foot-cta__mail {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .foot-bottom .links { gap: 20px; }
  .socials a { width: 44px; height: 44px; }
  /* 16 px minimum : en dessous, iOS zoome sur le champ dès la mise au point. */
  .select-wrap select { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--zoom,
  .reveal--down { opacity: 1; transform: none; transition: none; }
  .foot-glow { animation: none; }
  .team-card { transition: none; transform: none; }
  .team-card__inner { transition: none; }
  .temoin,
  .temoin.reveal,
  .temoin.reveal.in,
  .temoin.reveal.in .quote,
  .temoin.reveal.in p,
  .temoin.reveal.in .who,
  .temoin.reveal.in .blob { opacity: 1; transform: none; transition: none; animation: none; }
  .temoin::before, .temoin::after { display: none; }
  .temoins .temoin:hover, .temoins .temoin:focus-within { transform: none; }
  .temoin:hover .quote, .temoin:hover .blob, .temoin:hover .who .avatar { transform: none; }
  .team-card:hover .team-card__inner,
  .team-card:focus-visible .team-card__inner,
  .team-card.is-flipped .team-card__inner { transform: rotateY(180deg); }
}


/*# sourceMappingURL=main.441b3f8e.css.map*/