/* ============================================================
   EDITORIAL.CSS — Identité visuelle "Éditorial Cinéma"
   Chargé après site.css — cascade intentionnelle
   ============================================================ */

/* ----------------------------------------------------------
   TEXTES COURANTS — pile système (Helvetica/Arial)
   NB : l'@import Google Fonts (Montserrat) a été retiré car il était
   bloqué par la CSP (style-src/font-src) => jamais chargé, tout en
   restant une requête bloquante chaînée. Le rendu actuel utilise déjà
   la pile de repli ci-dessous, donc aucun changement visuel.
   Pour réactiver Montserrat : auto-héberger les WOFF2 en local et
   l'ajouter à font-src 'self' (voir recommandations).
   ---------------------------------------------------------- */

/* ----------------------------------------------------------
   0. POLICES AUTO-HÉBERGÉES — PP Agrandir
   Mapping :
     PPAgrandir  400 normal  → Regular        (corps, h2, h3)
     PPAgrandir  300 normal  → GrandLight      (lead, texte léger)
     PPAgrandir  700 normal  → Text-Bold       (gras, strong)
     PPAgrandir  900 normal  → GrandHeavy      (gros titres)
     PPAgrandir  100 italic  → ThinItalic      (accent décoratif)
     PPAgrandir  900 italic  → WideBlackItalic (hero h1 — impact max)
     PPAgrandirNarrow 400 normal → NarrowRegular (labels, meta)
     PPAgrandirTight  400 normal → TightRegular  (labels ultra-compacts)
   ---------------------------------------------------------- */
@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandir-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandir-GrandLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandirText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandir-GrandHeavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandir-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandir';
  src: url('../font/PPAgrandir-WideBlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandirNarrow';
  src: url('../font/PPAgrandir-NarrowRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPAgrandirTight';
  src: url('../font/PPAgrandir-TightRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------
   1. VARIABLES — Palette officielle
   Rich Black  #000814  — fond principal
   Oxford Blue #001d3d  — panneaux, cartes
   Yale Blue   #003566  — surfaces élevées, hovers
   Platine     #e5e5e5  — accent principal (neutre)
   Platine+    #f2f2f2  — accent doux (neutre)
   Eggshell    #f0ebd8  — texte principal
   Platinum    #e5e5e5  — texte muted
   ---------------------------------------------------------- */
:root {
  /* Fonds */
  --bg:          #000814;
  --body-start:  #000814;
  --body-mid:    #000e24;
  --body-end:    #000814;
  --stage-bg:    #000510;
  --footer-bg:   #001d3d;

  /* Panneaux et surfaces */
  --panel:              rgba(0, 29, 61, 0.92);
  --panel-soft:         rgba(0, 29, 61, 0.82);
  --surface-elevated:   linear-gradient(180deg, rgba(0, 29, 61, 0.98), rgba(0, 18, 46, 0.96));
  --surface-subtle:     rgba(0, 53, 102, 0.14);
  --surface-subtle-2:   rgba(0, 53, 102, 0.09);
  --surface-pill:       rgba(0, 53, 102, 0.18);
  --surface-kpi:        rgba(0, 53, 102, 0.14);

  /* Topbar */
  --topbar-bg:          rgba(0, 29, 61, 0.84);
  --topbar-stage-bg:    rgba(0, 8, 20, 0.44);
  --menu-active-bg:     rgba(0, 53, 102, 0.32);

  /* Bordures */
  --line:               rgba(0, 80, 150, 0.28);

  /* Hero */
  --stage-overlay-1:    rgba(0, 5, 16, 0.78);
  --stage-overlay-2:    rgba(0, 5, 16, 0.42);
  --stage-overlay-3:    rgba(0, 5, 16, 0.80);
  --home-copy:          rgba(240, 235, 216, 0.86);

  /* Accent : Platine / gris clair neutre */
  --accent:             #e5e5e5;
  --accent-soft:        #f2f2f2;
  --accent-rgb:         229, 229, 229;
  --accent-soft-rgb:    242, 242, 242;

  /* Hero bg gradients (halo neutre discret) */
  --hero-bg:
    linear-gradient(135deg, rgba(229, 229, 229, 0.05), transparent 42%),
    linear-gradient(145deg, rgba(0, 18, 46, 0.94), rgba(0, 29, 61, 0.84));
  --home-hero-bg:
    linear-gradient(135deg, rgba(229, 229, 229, 0.06), transparent 42%),
    linear-gradient(145deg, rgba(0, 8, 20, 0.78), rgba(0, 18, 46, 0.64));

  /* Badge gradient */
  --badge-bg:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(229, 229, 229, 0.10), rgba(242, 242, 242, 0.05));

  /* Texte */
  --text:               #f0ebd8;
  --muted:              #8fa3bc;

  /* Labels et liens (gris clair neutre, légèrement atténué) */
  --label-color:        #d6dbe2;
  --label-soft:         rgba(229, 229, 229, 0.72);
  --link-accent:        #e5e5e5;
  --pill-text:          #e5e5e5;
  --meta-accent:        rgba(229, 229, 229, 0.78);
  --client-pill-text:   rgba(229, 229, 229, 0.74);

  /* Back-to-top hover */
  --back-to-top-bg:          rgba(0, 8, 20, 0.80);
  --back-to-top-border:      rgba(255, 255, 255, 0.16);
  --back-to-top-hover-bg:    rgba(229, 229, 229, 0.92);
  --back-to-top-hover-text:  #000814;

  /* Focus ring */
  --focus-ring: rgba(229, 229, 229, 0.90);

  /* Grid bg lines */
  --grid-line: rgba(0, 53, 102, 0.06);
}

/* ----------------------------------------------------------
   2. TYPOGRAPHIE — Corps : Montserrat
   ---------------------------------------------------------- */
body {
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHIE — Titres : PPAgrandir GrandHeavy (900)
   ---------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.focus-hero h1,
.focus-hero--minimal h1,
.hero h1,
.section-head h2,
.content-panel h2,
.toolbar h1,
.toolbar h2,
.home-about-snapshot__copy h2,
.home-about-snapshot__identity h2,
.home-method-reel__copy h2,
.home-faq-testimonials__intro h2,
.contact-panel-title,
.home-quote-card h3,
h1.contact-panel-title,
.card-title,
.latest-card h3,
.testimonial-card h3,
.faq-item h3,
.timeline-item h3,
.availability-item strong,
.hero-badge-card strong,
.hero-kpi-value,
.page-loader__label,
.about-bio h2,
.about-section h2 {
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Hero principal : WideBlackItalic — impact maximum */
.focus-hero h1,
.focus-hero--minimal h1 {
  font-style: italic;
  line-height: 0.98;
}

/* ----------------------------------------------------------
   4. TYPOGRAPHIE — Labels / Meta : PPAgrandirNarrow
   ---------------------------------------------------------- */
.section-label,
.eyebrow,
.testimonial-role,
.hero-badge-label,
.hero-kpi-label,
.card-type,
.chip-count,
.step-number,
.timeline-date,
.small-pill,
.faq-index,
.footer-copy,
.availability-pill,
.availability-pill span,
.method-edit-timeline__ruler span,
.method-clip__label,
.brand-mark > span,
.testimonial-author,
.inline-link,
.menu-link,
.topbar .menu-link,
.home-method-steps strong {
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-weight: 400;
}

.section-label,
.eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.faq-index {
  font-family: 'PPAgrandirTight', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   5. TEXTURE GRAIN CINÉMATIQUE
   ---------------------------------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.038;
  mix-blend-mode: overlay;
  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");
}

/* ----------------------------------------------------------
   6. HERO — Traitement cinématique
   ---------------------------------------------------------- */
.focus-hero {
  border-left-color: rgba(229, 229, 229, 0.72);
}

.focus-hero--minimal {
  border-left-color: rgba(229, 229, 229, 0.55);
}

/* Timecode décoratif */
.hero-tc {
  display: block;
  margin-bottom: 14px;
  font-family: 'PPAgrandirTight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

/* Accroche héros — positionnement court sous le titre */
.hero-tagline {
  margin: 14px 0 18px;
  max-width: 34ch;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.5;
  color: var(--home-copy);
}

/* Nom du héros sur une seule ligne */
.home-focus-page .focus-hero--minimal h1 {
  max-width: none;
  white-space: nowrap;
}

/* Carte un peu plus large (desktop) pour le nom sur une ligne + la pastille rôle */
.home-focus-page .focus-hero--minimal {
  width: min(360px, 92vw);
}

/* Pastilles héros — au-dessus du prénom */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
}

/* Pastilles du cadre : arrondies et plus petites */
.hero-pills .availability-pill {
  min-height: 24px;
  padding: 0 11px;
  gap: 6px;
  border-radius: 999px;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

/* Pastille rôle — même esprit que « Disponible », teinte neutre #e5e5e5 */
.availability-pill--role {
  color: #e5e5e5;
  border-color: rgba(229, 229, 229, 0.5);
  background: rgba(229, 229, 229, 0.06);
}

.availability-pill--role:hover,
.availability-pill--role:focus-visible {
  border-color: rgba(229, 229, 229, 0.5);
  background: rgba(229, 229, 229, 0.06);
  transform: none;
}

/* Hero mobile : la carte (texte + CTA) passe AU-DESSUS, et la vidéo
   vient juste en dessous, en grand — l'une puis l'autre, sans superposition. */
@media (max-width: 760px) {
  .home-focus-page .focus-hero-stage {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: clamp(16px, 4vw, 28px);
  }

  /* 1) Menu + carte en premier, sans espace résiduel sous la carte */
  .home-focus-page .focus-hero-stage .page-shell-stage {
    order: 1;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
  }

  /* 2) La vidéo ensuite : collée juste sous la carte, sans espace, et bien grande */
  .home-focus-page .focus-hero-stage .home-stage-media {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 68svh;
    margin-top: 0;
    border-radius: 12px;
    transform: none; /* neutralise le parallaxe immersif sur mobile */
  }

  /* L'overlay assombrissant n'a plus lieu d'être (le texte n'est plus sur la vidéo) */
  .home-focus-page .focus-hero-stage .home-stage-overlay {
    display: none;
  }

  /* La carte garde son cadre, compacte, pleine largeur, collée au header et à la vidéo */
  .home-focus-page .focus-hero--minimal {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 12px 14px 13px;
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  }

  /* Pas d'espace entre le menu (header) et la carte */
  .home-focus-page .page-shell-stage .topbar {
    margin-bottom: 0;
  }

  /* Nom : une seule ligne, taille adaptée au mobile */
  .home-focus-page .focus-hero--minimal h1 {
    font-size: clamp(1.45rem, 6.6vw, 1.9rem);
  }

  /* Espacements internes resserrés pour une carte compacte */
  .home-focus-page .focus-hero--minimal .hero-tagline {
    margin: 7px 0 0;
    font-size: 0.95rem;
  }

  .home-focus-page .focus-hero--minimal .hero-pills {
    margin: 0 0 10px;
  }

  /* Contrôles vidéo ancrés en bas du bloc vidéo */
  .home-focus-page .focus-hero-stage .home-stage-controls {
    bottom: clamp(20px, 5vw, 30px);
  }
}


/* ----------------------------------------------------------
   7. BADGE DISPONIBLE — Style indicateur cinéma
   ---------------------------------------------------------- */
.availability-pill {
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ----------------------------------------------------------
   8. BOUTONS — Style éditorial outline
   ---------------------------------------------------------- */
.button-primary {
  border-radius: 2px;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  padding: 0 24px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  color: #000814;
  transform: none;
  border-color: var(--accent);
}

.button-secondary {
  border-radius: 2px;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--text);
  transform: none;
}

/* ----------------------------------------------------------
   9. LIENS INLINE ET NAVIGATION
   ---------------------------------------------------------- */
.inline-link {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.inline-link:hover {
  opacity: 0.72;
  transform: none;
}

.menu-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-link.is-active {
  transform: none;
  background: transparent;
}

/* Hover : couleur uniquement, pas de cadre/fond */
.menu-link:hover,
.menu-link:focus-visible {
  color: var(--accent);
  background: transparent;
}

/* Page active : texte clair + soulignement (affordance non-couleur) */
.menu-link.is-active {
  color: var(--accent);
  background: transparent;
  font-weight: 600;
  position: relative;
}

.menu-link.is-active::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -3px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.menu-link.is-active:hover,
.menu-link.is-active:focus-visible {
  color: var(--accent);
  background: transparent;
}

/* ----------------------------------------------------------
   10. LABELS DE SECTION
   ---------------------------------------------------------- */
.section-label,
.eyebrow {
  color: var(--accent);
  opacity: 0.85;
}

/* ----------------------------------------------------------
   11. SECTION HEAD — h2 display
   ---------------------------------------------------------- */
.section-head h2,
.home-about-snapshot__copy h2,
.home-method-reel__copy h2,
.home-faq-testimonials__intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

/* ----------------------------------------------------------
   12. TÉMOIGNAGES
   ---------------------------------------------------------- */
.testimonial-card::before {
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 0.8;
  color: rgba(229, 229, 229, 0.14);
  top: 4px;
  right: 18px;
}

.testimonial-logo:not(:has(.testimonial-logo-image)) {
  background: rgba(229, 229, 229, 0.10);
  border-color: rgba(229, 229, 229, 0.28);
  color: var(--accent);
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

.testimonial-author {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.72;
}

/* ----------------------------------------------------------
   13. PROCESS / TIMELINE
   ---------------------------------------------------------- */
.method-edit-timeline__ruler span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.65;
}

.method-clip__label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-method-steps strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent);
}

/* ----------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------- */
.footer-copy {
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.48;
}

.footer-column h3 {
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 14px;
}

.footer-column a,
.footer-column p,
.footer-column span {
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ----------------------------------------------------------
   15. SKIP LINK
   ---------------------------------------------------------- */
.skip-link {
  background: var(--accent);
  color: #000814;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
}

/* ----------------------------------------------------------
   16. PAGE LOADER
   ---------------------------------------------------------- */
.page-loader__label {
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ----------------------------------------------------------
   17. CARTES
   ---------------------------------------------------------- */
.latest-card h3,
.card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.1;
  font-style: italic;
}

/* ----------------------------------------------------------
   18. FAQ
   ---------------------------------------------------------- */
.faq-question-title {
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
}

/* ----------------------------------------------------------
   19. BACK TO TOP
   ---------------------------------------------------------- */
.back-to-top:hover,
.back-to-top:focus-visible {
  color: #000814;
}

/* ----------------------------------------------------------
   20. KPI HERO
   ---------------------------------------------------------- */
.hero-kpi-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.hero-kpi-value {
  font-size: 1.7rem;
  font-style: italic;
}

/* ----------------------------------------------------------
   21. FOCUS VISIBLE RENFORCÉ — WCAG 2.2 § 2.4.11
   ---------------------------------------------------------- */
.menu-link:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.inline-link:focus-visible,
.faq-question:focus-visible,
.home-stage-control:focus-visible,
.back-to-top:focus-visible,
.latest-carousel-btn:focus-visible,
.brand:focus-visible,
.footer-column a:focus-visible,
.inline-action:focus-visible,
.home-about-snapshot__photo a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----------------------------------------------------------
   22. BRAND NAV — PPAgrandir bold, lisible dans la topbar
   ---------------------------------------------------------- */
.brand-mark > span {
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ----------------------------------------------------------
   23. PORTFOLIO — Filtres (simplifié)
   Chips auto-dimensionnés, scroll horizontal mobile
   ---------------------------------------------------------- */

.portfolio-page .filter-chip {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   25. MOTION — Hero entry animations
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-tc {
    animation: ed-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  }

  .focus-hero--minimal h1 {
    animation: ed-reveal-title 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s backwards;
  }

  .focus-hero--minimal .availability-pill {
    animation: ed-fade-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
  }
}

@keyframes ed-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ed-reveal-title {
  from { opacity: 0; transform: translateY(28px) skewY(1.8deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

/* ----------------------------------------------------------
   26. MOTION — H1 hero display size
   ---------------------------------------------------------- */
.focus-hero--minimal h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
}

/* ----------------------------------------------------------
   27. MOTION — Micro-interactions
   ---------------------------------------------------------- */
.button-primary {
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.32);
}

.button-secondary {
  transition: color 0.2s ease, background 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.home-about-snapshot__photo {
  transition: box-shadow 0.3s ease;
}

.home-about-snapshot__photo:hover {
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.36);
}

.home-quote-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.home-quote-card:hover {
  border-color: rgba(var(--accent-rgb), 0.32);
  box-shadow: 0 0 48px rgba(var(--accent-rgb), 0.08);
}

/* ----------------------------------------------------------
   28. GRILLE — Dernières réalisations (remplace le carrousel)
   ---------------------------------------------------------- */
.latest-grid.latest-grid-view {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  width: 100%;
}

.latest-grid.latest-grid-view .latest-card {
  grid-column: auto;
  position: static;
  width: 100%;
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
  padding: 0;
  background: linear-gradient(180deg, rgba(0, 29, 61, 0.98), rgba(0, 18, 46, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.latest-grid.latest-grid-view .latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(var(--accent-rgb), 0.22);
  border-color: rgba(var(--accent-rgb), 0.28);
}

.latest-grid.latest-grid-view .latest-media {
  margin-top: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: block;
}

.latest-grid.latest-grid-view .latest-thumb {
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-grid.latest-grid-view .latest-card:hover .latest-thumb {
  transform: scale(1.07);
}

.latest-grid.latest-grid-view .latest-media-overlay {
  background:
    linear-gradient(180deg, rgba(0, 5, 16, 0.04) 0%, rgba(0, 5, 16, 0.52) 100%),
    linear-gradient(110deg, rgba(var(--accent-rgb), 0.12), transparent 42%);
  transition: opacity 280ms ease;
}

.latest-grid.latest-grid-view .latest-card:hover .latest-media-overlay {
  opacity: 0.6;
}

.latest-grid.latest-grid-view .latest-card-meta {
  padding: 16px 18px 20px;
}

.latest-grid.latest-grid-view .latest-card h3 {
  margin-top: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 860px) {
  .latest-grid.latest-grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .latest-grid.latest-grid-view {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   29. SECTION LATEST INTÉGRÉE — contrainte de largeur pour la grille
   ---------------------------------------------------------- */
.section-block.section-latest-integrated .latest-grid.latest-grid-view,
.section-block.section-latest-integrated .video-grid--home {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 0;
}

/* Home "dernières créations" : grille + cartes IDENTIQUES à la page Réalisations */
.video-grid--home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.video-grid--home .video-card {
  grid-column: auto;
  border-radius: 10px;
}

.video-grid--home .card-body {
  padding: 13px 15px 17px;
}

.video-grid--home .card-topline {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.video-grid--home .card-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--meta-accent);
  opacity: 0.7;
}

.video-grid--home .card-title {
  font-family: 'PPAgrandir', sans-serif;
  font-size: clamp(0.88rem, 1.25vw, 1.06rem);
  line-height: 1.22;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.video-grid--home .card-footer {
  margin-top: 11px;
}

.video-grid--home .client-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  min-height: 26px;
  padding: 0 10px;
  opacity: 0.6;
}

.video-grid--home .video-preview-badge {
  z-index: 2;
  font-size: 0.64rem;
  min-height: 26px;
  padding: 0 9px;
}

.video-grid--home .video-preview-play {
  width: 40px;
  height: 40px;
  right: 13px;
  bottom: 13px;
}

@media (max-width: 860px) {
  .video-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-block.section-latest-integrated .video-grid--home {
    padding-inline: clamp(14px, 4vw, 24px);
  }
}

@media (max-width: 560px) {
  .video-grid--home {
    grid-template-columns: 1fr;
  }
}

/* Pas de grid-template override pour filter-row à 420px — le scroll horizontal gère mobile */

/* ----------------------------------------------------------
   30. BACKGROUND UNIFIÉ — Rich Black partout
   On supprime les blocs de couleurs alternés pour ne garder
   qu'un seul fond bleu très sombre, plus premium et cohérent.
   ---------------------------------------------------------- */
:root {
  --panel:              transparent;
  --panel-soft:         transparent;
  --footer-bg:          #000814;
  --surface-elevated:   #000814;
  --surface-subtle:     transparent;
  --surface-subtle-2:   transparent;
  --surface-pill:       rgba(255, 255, 255, 0.04);
  --surface-kpi:        rgba(255, 255, 255, 0.04);
  --empty-bg:           #000814;
}

body {
  background: #000814;
}

.section-block,
.cta-band,
.content-panel,
.site-footer,
.toolbar {
  background: transparent;
}

/* On supprime les halos jaunes / shadows qui dessinaient des "blocs" */
.section-block:not(.home-faq),
.content-panel,
.toolbar,
.cta-band,
.site-footer {
  box-shadow: none;
  border-color: transparent;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
}

/* Cartes : on garde un léger relief par bordure uniquement (pas de fond bleu plus clair) */
.video-card,
.latest-grid.latest-grid-view .latest-card,
.testimonial-card,
.faq-item,
.timeline-item,
.hero-badge-card,
.portrait-card,
.process-card,
.portfolio-page .video-card,
.home-faq-item,
.home-quote-card--form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.video-card:hover,
.latest-grid.latest-grid-view .latest-card:hover,
.portfolio-page .video-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

/* On neutralise aussi les fonds des autres "blocs" (timeline, méthode, étapes…) */
.home-method-reel,
.home-method-reel__board,
.method-edit-timeline,
.home-method-steps li,
.home-about-snapshot,
.home-faq-testimonials,
.testimonials-section,
.section-latest-integrated,
.contact-form-section,
.rdv-section,
.home-method-reel__copy {
  background: transparent;
  box-shadow: none;
}

/* Bandes pleine largeur "Dernières créations" et "Avis clients" :
   on supprime le fond #101a28 plus clair pour fondre avec le Rich Black. */
.home-focus-page .section-block.section-latest-integrated,
.home-focus-page .home-client-reviews {
  background: transparent;
}

/* Timeline (méthode) : conserver le rythme visuel mais sans fond bleu plus clair */
.method-edit-timeline {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.015);
}

/* Étapes de la méthode : alignement avec le reste */
.home-method-steps li {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-method-steps li.is-active {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.035);
}

/* ----------------------------------------------------------
   FAQ + CONTACT-MOI — Réduction de la présence du jaune
   ---------------------------------------------------------- */
.home-faq-item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.home-faq-item:hover {
  border-color: rgba(var(--accent-rgb), 0.16);
  box-shadow: none;
}

.home-faq-item.is-open {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.faq-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.home-faq-item.is-open .faq-toggle {
  border-color: rgba(var(--accent-rgb), 0.34);
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: none;
}

/* Carte "Contact-moi !" du formulaire à droite de la FAQ */
.home-quote-card--form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-quote-card--form:hover {
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: none;
}

/* Bouton "Envoyer ma demande" : outline jaune au lieu de aplat plein */
.home-quote-card--form .button-primary {
  background: transparent;
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.6);
}

.home-quote-card--form .button-primary:hover,
.home-quote-card--form .button-primary:focus-visible {
  background: var(--accent);
  color: #000814;
}

/* Hero : on garde une teinte légèrement contrastée mais sans dégradé saturé */
.hero {
  background: transparent;
}

/* Page Réalisations : élargir la grille à 90% de la viewport */
.portfolio-page {
  --site-shell-width: 90vw;
}

.portfolio-page .page-shell {
  width: 90vw;
  width: var(--site-shell-width);
}

.portfolio-page .video-grid {
  width: 100%;
}

@media (min-width: 561px) {
  .portfolio-page .page-shell {
    width: 90vw;
  }
}

/* ----------------------------------------------------------
   31. PASSIONS — grille épurée (remplace le passion-bowl)
   ---------------------------------------------------------- */
.passions-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.passion-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(229, 229, 229, 0.08), rgba(0, 8, 20, 0.0) 60%),
    linear-gradient(180deg, #001631, #000814);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

/* Fallback color hint per passion (visible si la photo n'est pas encore livrée) */
.passion-tile[data-passion="football"]      { background: linear-gradient(165deg, rgba(48, 178, 102, 0.4), rgba(0, 8, 20, 0)), linear-gradient(180deg, #033117, #000814); }
.passion-tile[data-passion="cinema"]        { background: linear-gradient(165deg, rgba(204, 50, 50, 0.4), rgba(0, 8, 20, 0)), linear-gradient(180deg, #2a0a0a, #000814); }
.passion-tile[data-passion="photographie"]  { background: linear-gradient(165deg, rgba(122, 167, 255, 0.3), rgba(0, 8, 20, 0)), linear-gradient(180deg, #001736, #000814); }
.passion-tile[data-passion="musique"]       { background: linear-gradient(165deg, rgba(170, 100, 255, 0.35), rgba(0, 8, 20, 0)), linear-gradient(180deg, #1a0a2a, #000814); }
.passion-tile[data-passion="voyages"]        { background: linear-gradient(165deg, rgba(255, 168, 76, 0.35), rgba(0, 8, 20, 0)), linear-gradient(180deg, #2c1505, #000814); }
.passion-tile[data-passion="formule1"]       { background: linear-gradient(165deg, rgba(225, 6, 19, 0.4), rgba(0, 8, 20, 0)), linear-gradient(180deg, #2a0606, #000814); }
.passion-tile[data-passion="yugioh"]        { background: linear-gradient(165deg, rgba(229, 229, 229, 0.32), rgba(0, 8, 20, 0)), linear-gradient(180deg, #2a210a, #000814); }
.passion-tile[data-passion="pandas"]        { background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(0, 8, 20, 0)), linear-gradient(180deg, #1a1c20, #000814); }

.passion-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.passion-tile__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.95) brightness(0.85);
}

.passion-tile:hover .passion-tile__photo {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(0.95);
}

.passion-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 8, 20, 0) 38%, rgba(0, 8, 20, 0.82) 100%);
  pointer-events: none;
}

.passion-tile__label {
  position: absolute;
  left: 12px;
  right: 10px;
  bottom: 13px;
  z-index: 2;
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(0.72rem, 1.05vw, 0.95rem);
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.passion-tile__label::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 8px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.passion-tile:hover .passion-tile__label::before {
  width: 32px;
}

@media (max-width: 860px) {
  .passions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .passions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ----------------------------------------------------------
   32. PAGE CONTACT — Réorganisation 3 blocs
   Tous les blocs partagent le même habillage : bordure fine,
   fond très légèrement éclairci, padding cohérent.
   ---------------------------------------------------------- */
.contact-page-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.contact-hero {
  text-align: left;
  max-width: 720px;
}

.contact-hero__title {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  font-style: italic;
}

.contact-hero__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-layout.contact-layout--aligned {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}

@media (max-width: 860px) {
  .contact-layout.contact-layout--aligned {
    grid-template-columns: 1fr;
  }
}

/* Habillage commun aux 3 blocs */
.contact-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.contact-card .section-head {
  margin-bottom: 6px;
}

/* Carte identité */
.contact-identity-card {
  gap: 22px;
}

.contact-identity-card__head {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-identity-card .contact-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(229, 229, 229, 0.4);
  flex: 0 0 auto;
}

.contact-identity-card h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
}

.contact-identity-card__role {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-channel__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-channel__label {
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.78;
}

.contact-channel__value {
  font-size: 0.92rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Form section : mêmes paddings que la carte identité */
.contact-form-section {
  align-self: stretch;
}

.contact-layout.contact-layout--aligned .contact-form-shell {
  padding: 0;
  background: transparent;
  border: 0;
  flex: 1;
}

/* RDV : bouton Google Agenda intégré dans la carte coordonnées */
.contact-booking {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-booking__label {
  margin: 0;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

/* Le bouton injecté par Google : on l'aligne sur notre charte */
.contact-booking button {
  font-family: 'PPAgrandirNarrow', sans-serif !important;
  letter-spacing: 0.08em !important;
  border-radius: 2px !important;
  cursor: pointer;
}

/* ----------------------------------------------------------
   33. MODALE RÉALISATIONS — Contexte projet enrichi
   ---------------------------------------------------------- */
/* Permet au conteneur d'accueillir le bloc contexte sous la vidéo */
.video-modal__container {
  max-height: 92vh;
  overflow-y: auto;
}

.video-modal__context {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(0, 80, 150, 0.15);
  display: grid;
  gap: 16px;
}

.video-modal__description {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 72ch;
}

.video-modal__facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 26px;
}

.video-modal__fact {
  margin: 0;
}

.video-modal__fact[hidden] {
  display: none;
}

.video-modal__fact dt {
  margin-bottom: 5px;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label-soft);
}

.video-modal__fact dd {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

@media (max-width: 560px) {
  .video-modal__facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----------------------------------------------------------
   34. PAGE SERVICES
   ---------------------------------------------------------- */
.services-page .page-stack {
  gap: clamp(56px, 8vw, 110px);
  margin-top: 8px;
  padding-block: clamp(6px, 1vw, 14px) clamp(60px, 8vw, 110px);
}

/* --- Hero --- */
.services-hero {
  max-width: 880px;
}

.services-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.services-hero__lead {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  color: var(--muted);
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* --- Section heads partagés --- */
.services-page .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}

.services-page .section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.05;
}

.section-head__aside {
  margin: 0;
  max-width: 38ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* --- Ce que je fais : grille de prestations --- */
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

/* --- Mes offres : packs --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.offer-card--featured {
  border-color: rgba(229, 229, 229, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.offer-card__badge {
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 4px 12px;
  border-radius: 2px;
  background: var(--accent);
  color: #000814;
  font-family: 'PPAgrandirNarrow', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card__name {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.offer-card__tagline {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.offer-card__features {
  list-style: none;
  margin: 22px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 11px;
  flex: 1 1 auto;
}

.offer-card__features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text);
}

.offer-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.offer-card__cta {
  align-self: flex-start;
  width: 100%;
}

/* --- Mon process : étapes --- */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step__num {
  font-family: 'PPAgrandir', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
  color: rgba(229, 229, 229, 0.32);
  min-width: 2.4ch;
}

.process-step__body h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.process-step__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 60ch;
}

/* --- CTA finale --- */
.services-cta__inner {
  padding: clamp(36px, 5vw, 64px) clamp(26px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 14%, rgba(229, 229, 229, 0.06), transparent 46%),
    rgba(255, 255, 255, 0.03);
  text-align: center;
}

.services-cta__inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.services-cta__inner p {
  margin: 16px auto 0;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 600px) {
  .services-hero__actions,
  .services-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero__actions .button-primary,
  .services-hero__actions .button-secondary,
  .services-cta__actions .button-primary,
  .services-cta__actions .button-secondary {
    width: 100%;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ----------------------------------------------------------
   35. À PROPOS — Photo de profil agrandie et proportionnée sur mobile
   (page À propos + section À propos de l'accueil)
   ---------------------------------------------------------- */
@media (max-width: 760px) {
  .about-overview .about-intro-snapshot {
    max-height: none;
    overflow: visible;
  }

  .about-overview .home-about-snapshot__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  /* Accueil — section À propos : photo un peu plus petite et contenu centré */
  .home-focus-page .home-about-snapshot--human .home-about-snapshot__photo {
    width: 90%;
    margin-inline: auto;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .home-focus-page .home-about-snapshot--human .home-about-snapshot__copy {
    text-align: center;
    align-items: center;
  }

  .home-focus-page .home-about-snapshot--human .home-about-snapshot__identity {
    align-items: center;
  }

  .home-focus-page .home-about-snapshot--human .hero-pills {
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   36. ACCUEIL — Sections mieux adaptées sur mobile
   (méthode / avis clients / FAQ)
   ---------------------------------------------------------- */
@media (max-width: 760px) {
  /* « Comment se déroule un projet ? » : on masque la timeline décorative
     (trop dense sur mobile) et on met en avant les 4 étapes claires. */
  .home-method-reel .method-edit-timeline {
    display: none;
  }

  .home-method-reel__board {
    gap: 0;
  }

  .home-method-reel__copy h2 {
    margin-bottom: clamp(14px, 3vw, 22px);
  }

  .home-method-steps {
    gap: 12px;
  }

  /* Avis clients : nom plus compact pour tenir à côté de l'avatar. */
  .home-client-reviews .testimonial-card h3 {
    font-size: 1.22rem;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  /* FAQ : la bascule +/- reste EN LIGNE (3 colonnes) au lieu de passer
     sur sa propre ligne et de créer un trou. */
  .home-faq-item .faq-question {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 12px;
  }

  .home-faq-item .faq-toggle {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    align-self: start;
    margin-top: 3px;
  }
}

/* ----------------------------------------------------------
   37. MOBILE — Menu (flou + fermeture au scroll via JS),
   filtres réalisations sans scroll, et suppression des apparitions
   ---------------------------------------------------------- */
@media (max-width: 760px) {
  /* Le menu fait partie du même bloc que le logo + le burger (un seul
     ensemble) : on supprime le panneau flottant séparé. */
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .js .menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    order: 3;
    width: 100%;
    margin: 0;
    padding: 8px 2px 2px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    /* 2 colonnes : pages à gauche, Disponible + réseaux à droite */
    grid-template-columns: 1fr auto;
    align-items: start;
    column-gap: 16px;
    row-gap: 2px;
  }

  /* Voile sombre + flou portés par TOUT le bloc quand le menu est ouvert */
  .js .topbar.is-menu-open .topbar-inner {
    background: rgba(0, 8, 20, 0.94);
    -webkit-backdrop-filter: blur(40px) saturate(120%);
    backdrop-filter: blur(40px) saturate(120%);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding-bottom: 14px;
  }

  /* Petite animation d'apparition */
  .js .topbar.is-menu-open .menu {
    display: grid;
    animation: menuReveal 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  /* Colonne de gauche : les pages, empilées */
  .js .menu .menu-link {
    grid-column: 1;
    color: #eef1f6;
    padding: 10px 8px;
  }

  .js .menu .menu-link.is-active {
    color: var(--accent);
  }

  /* Colonne de droite : Disponible en haut, réseaux sociaux en dessous */
  .js .menu .menu-cta {
    grid-column: 2;
    grid-row: 1 / span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    padding: 6px 6px 0;
    border-top: 0;
  }

  .js .menu .menu-cta .menu-disponible {
    align-self: flex-end;
    margin: 0;
  }

  .js .menu .menu-social {
    display: flex;
    gap: 12px;
  }

  /* Réalisations : tous les filtres visibles sans scroll horizontal */
  .portfolio-page .filter-row {
    flex-wrap: wrap;
    overflow-x: visible;
    overflow-y: visible;
  }

  /* Pas d'effets d'apparition sur mobile : tout est visible immédiatement */
  .scroll-reveal,
  .scroll-reveal.is-visible,
  .video-card,
  .video-grid--home .video-card,
  .portfolio-page .video-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Wrapper Disponible + réseaux : neutre sur desktop (les enfants se
   comportent comme avant). Icônes réseaux uniquement dans le menu mobile. */
.menu-cta {
  display: contents;
}

.menu-social {
  display: none;
}

.menu-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef1f6;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-social__link:hover,
.menu-social__link:focus-visible {
  color: var(--accent);
  border-color: rgba(229, 229, 229, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.menu-social__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
