/* ============================================================
   SCANOPÉE — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --vert-foret:   #2C4A1E;
  --vert-vif:     #3EBF2F;
  --beige:        #F2F0E8;
  --noir:         #1A1A1A;
  --blanc:        #FFFFFF;
  --gris-texte:   #4A4A4A;
  --gris-leger:   #E8E6DE;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Échelle typographique */
  --text-eyebrow:  0.75rem;   /* labels uppercase */
  --text-h1:       clamp(2.5rem, 5vw, 4rem);
  --text-h2:       clamp(1.8rem, 3vw, 2.5rem);
  --text-h3:       1.1rem;
  --text-body:     1rem;
  --text-small:    0.9rem;
  --text-xsmall:   0.8rem;
  --line-height:   1.7;

  --max-w: 1140px;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--noir); background: var(--blanc); line-height: 1.6; }

/* ── Justification du texte courant ─────────────────────────
   Appliquée aux paragraphes de corps de texte uniquement.
   Pas de césure automatique : le dictionnaire de coupure du
   navigateur produit des coupures disgracieuses en français
   ("parti-culiers", "cha-cun", "résisto-graphe"...). On préfère
   un espacement inter-mot légèrement irrégulier à un mot coupé
   au milieu d'une syllabe. Titres, boutons, labels, eyebrows
   et nav restent alignés à gauche (ne pas justifier de texte
   court). */
p, .services__text, .service-card__text, .outil-card__text,
.process__text, .enjeu__text, .argument__text, .livrables__list li,
.contact__subtitle, .services__note-text, .hero__subtitle {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── Section headers ─────────────────────────────────────── */
.section__header-center { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--vert-vif); margin-bottom: 0.75rem; display: block;
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700; font-style: normal;
  color: var(--vert-foret); line-height: 1.2;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--vert-foret);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--vert-foret);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav__logo img { height: 36px; width: auto; }
.nav__links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav__links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--blanc); opacity: 0.85; transition: opacity var(--transition);
}
.nav__links a:hover { opacity: 1; }
.nav__links a.nav__active {
  color: var(--vert-vif);
  font-weight: 700;
  opacity: 1;
}
.nav__cta {
  background: var(--vert-vif); color: var(--blanc) !important;
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  opacity: 1 !important; font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: #35a827 !important; }

/* Bouton burger — masqué en desktop, affiché en mobile (media query plus bas) */
.nav__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; padding: 0;
  background: none; border: none; cursor: pointer; z-index: 101;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--blanc); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 600; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all var(--transition);
}
.btn--primary { background: var(--vert-vif); color: var(--blanc); }
.btn--primary:hover { background: #35a827; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--blanc); border: 1.5px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--blanc); background: rgba(255,255,255,0.08); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,48,18,0.92) 0%, rgba(28,48,18,0.75) 60%, rgba(28,48,18,0.5) 100%);
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--vert-vif); margin-bottom: 1.5rem; display: block;
}
.hero__title {
  font-family: var(--font-display); font-size: var(--text-h1);
  font-weight: 400; line-height: 1.15; color: var(--blanc); margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--vert-vif); }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body); color: rgba(255,255,255,0.78);
  line-height: var(--line-height); margin-bottom: 2.5rem; max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__visual { display: flex; justify-content: center; }
.hero__logo-large {
  width: min(260px, 60%);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4)) brightness(1.05);
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 0.12em; z-index: 1;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.2);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.2; } 50% { opacity: 0.6; } }

/* ── Accroche ────────────────────────────────────────────── */
.accroche {
  padding: 7rem 0;
  background-color: var(--blanc);
  background-size: cover; background-position: center;
  position: relative;
}
.accroche::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.92);
}
.accroche__inner { position: relative; z-index: 1; }
.accroche__inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.accroche__title {
  font-family: var(--font-display); font-size: var(--text-h2);
  font-weight: 700; font-style: normal;
  line-height: 1.2; margin-bottom: 2rem; color: var(--vert-foret);
}
.accroche__title span { color: var(--vert-vif); }
.accroche__divider { width: 48px; height: 3px; background: var(--vert-vif); margin: 0 auto 2rem; border-radius: 2px; }
.accroche__text {
  font-size: var(--text-body); color: var(--gris-texte);
  line-height: var(--line-height); max-width: 620px; margin: 0 auto;
}

/* ── Services ────────────────────────────────────────────── */
.services { display: grid; grid-template-columns: 1fr 2fr; background: var(--beige); }
.services__photo { background-size: cover; background-position: center; min-height: 100%; }
.services__content { padding: 5rem 3rem; }
.services__content .section__eyebrow { margin-bottom: 0.75rem; }
.services__content .section__title { margin-bottom: 2.5rem; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.services__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 66%; margin-left: auto; margin-right: auto; }
.service-card {
  background: var(--blanc); border-radius: 8px; padding: 2rem 1.5rem;
  position: relative; overflow: hidden; border: 1px solid var(--gris-leger);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(44,74,30,0.12); transform: translateY(-3px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--vert-vif); }
.service-card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.service-card__title {
  font-family: var(--font-display); font-size: var(--text-h3);
  font-weight: 700; font-style: normal;
  color: var(--vert-foret); margin-bottom: 0.6rem; line-height: 1.3;
}
.service-card__text { font-size: var(--text-small); color: var(--gris-texte); line-height: var(--line-height); }
.services__plus {
  background: var(--vert-foret); color: var(--blanc);
  border-radius: 8px; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem;
}
.services__plus-badge {
  background: var(--vert-vif); color: var(--blanc); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem;
  border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}
.services__plus-text { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; }

/* ── Outils ──────────────────────────────────────────────── */
.outils {
  padding: 6rem 0;
  background-color: var(--vert-foret);
  background-size: cover; background-position: center;
  position: relative;
}
.outils::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(28, 48, 18, 0.72);
}
.outils .container { position: relative; z-index: 1; }
.outils__subtitle {
  color: rgba(255,255,255,0.6); font-size: 1rem;
  margin-top: 0.75rem; max-width: 700px; margin-left: auto; margin-right: auto;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .outils__subtitle { white-space: normal; }
}
.outils__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.outil-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.outil-card:hover { border-color: var(--vert-vif); transform: translateY(-4px); }
.outil-card__photo {
  height: 200px; background-size: cover; background-position: center;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.outil-card:hover .outil-card__photo { filter: brightness(0.95); }
.outil-card__body { padding: 1.75rem; }
.outil-card__title {
  font-family: var(--font-display); font-size: var(--text-h3);
  font-weight: 700; font-style: normal;
  color: var(--blanc); margin-bottom: 0.75rem;
}
.outil-card__text { font-size: var(--text-small); color: rgba(255,255,255,0.7); line-height: var(--line-height); margin-bottom: 1rem; }
.outil-card__tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vert-vif); border: 1px solid rgba(62,191,47,0.4);
  padding: 0.2rem 0.6rem; border-radius: 2px;
}

/* ── Process ─────────────────────────────────────────────── */
.process {
  padding: 6rem 0;
  background-color: var(--beige);
  background-size: cover; background-position: center;
  position: relative;
}
.process::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(242, 240, 232, 0.82);
}
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gris-leger); border: 1px solid var(--gris-leger);
  border-radius: 10px; overflow: hidden;
}
.process__step {
  background: var(--blanc); padding: 2rem 1.75rem;
  transition: background var(--transition);
  position: relative;
}
.process__step:hover { background: #f8fff6; }
.process__num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(44,74,30,0.12); line-height: 1; margin-bottom: 0.75rem;
}
.process__step:hover .process__num { color: rgba(62,191,47,0.25); }
.process__title { font-family: var(--font-body); font-size: var(--text-small); font-weight: 600; color: var(--vert-foret); margin-bottom: 0.5rem; }
.process__text { font-size: var(--text-xsmall); color: var(--gris-texte); line-height: var(--line-height); }
.process__link { color: var(--vert-vif); font-weight: 600; text-decoration: none; white-space: nowrap; }
.process__link:hover { text-decoration: underline; }

/* ── Pourquoi diag ───────────────────────────────────────── */
.pourquoi-diag {
  padding: 6rem 0;
  background-color: var(--vert-foret);
  background-size: cover; background-position: center;
  position: relative;
}
.pourquoi-diag::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(28, 48, 18, 0.78);
}
.pourquoi-diag__intro {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7;
  max-width: 680px; margin: 1rem auto 0;
  font-style: italic;
}
.enjeux__list { display: flex; flex-direction: column; gap: 0; margin-top: 4rem; position: relative; z-index: 1; }
.enjeu {
  display: grid; grid-template-columns: 140px 1fr; gap: 3rem; align-items: center;
  padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.enjeu:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.enjeu--reverse { grid-template-columns: 1fr 140px; }
.enjeu--reverse .enjeu__spacer { order: 2; }
.enjeu--reverse .enjeu__body { order: 1; }
.enjeu__spacer { width: 100px; flex-shrink: 0; justify-self: center; }
.enjeu__title {
  font-family: var(--font-display); font-size: var(--text-h2);
  font-weight: 700; font-style: normal;
  color: var(--blanc); margin-bottom: 0.75rem;
}
.enjeu__text { font-size: var(--text-body); color: rgba(255,255,255,0.72); line-height: var(--line-height); max-width: 680px; }

/* ── Pourquoi nous ───────────────────────────────────────── */
.pourquoi-nous {
  padding: 6rem 0;
  background-color: var(--blanc);
  background-size: cover; background-position: center;
  position: relative;
}
.pourquoi-nous::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.85);
}
.pourquoi-nous__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem; gap: 2rem;
}
.pourquoi-nous__logo { width: 140px; height: auto; flex-shrink: 0; }
.pourquoi-nous__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.argument {
  display: flex; gap: 1.25rem; padding: 1.75rem;
  border: 1px solid var(--gris-leger); border-radius: 8px;
  transition: border-color var(--transition);
}
.argument:hover { border-color: var(--vert-vif); }
.argument__check {
  width: 28px; height: 28px; border-radius: 50%; background: var(--vert-vif);
  color: var(--blanc); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem;
}
.argument__title { font-family: var(--font-body); font-weight: 600; font-size: var(--text-body); color: var(--vert-foret); margin-bottom: 0.3rem; }
.argument__text { font-size: var(--text-small); color: var(--gris-texte); line-height: var(--line-height); }

/* ── Livrables ───────────────────────────────────────────── */
.livrables { display: grid; grid-template-columns: 1fr 2fr; min-height: 500px; background: var(--beige); }
.livrables__photo { background-size: cover; background-position: center; }
.livrables__content { padding: 5rem 4rem; display: flex; align-items: center; }
.livrables__inner { display: flex; flex-direction: column; gap: 2.5rem; }
.livrables__intro {
  font-family: var(--font-display); font-size: var(--text-h2);
  font-weight: 400; font-style: normal;
  color: var(--vert-foret); line-height: 1.4;
}
.livrables__list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.livrables__list li { display: flex; gap: 1rem; font-size: var(--text-body); color: var(--gris-texte); line-height: var(--line-height); }
.livrables__list li::before { content: '→'; color: var(--vert-vif); font-weight: 700; flex-shrink: 0; }

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background-color: var(--vert-foret);
  background-size: cover; background-position: center;
  position: relative;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(28, 48, 18, 0.68);
}
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact__title {
  font-family: var(--font-display); font-size: var(--text-h2);
  font-weight: 700; font-style: normal;
  margin-bottom: 1rem; color: var(--blanc);
}
.contact__subtitle { font-size: var(--text-body); opacity: 0.75; margin-bottom: 2.5rem; line-height: var(--line-height); color: var(--blanc); }
.contact__items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__item { display: flex; align-items: center; gap: 1rem; }
.contact__item-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(62,191,47,0.18); border: 1px solid rgba(62,191,47,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.contact__item-text { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.contact__item-text a:hover { color: var(--vert-vif); }
.contact__form { background: var(--blanc); border-radius: 8px; padding: 2.5rem; }
.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block; font-family: var(--font-body);
  font-size: var(--text-eyebrow); font-weight: 600;
  color: var(--vert-foret); margin-bottom: 0.4rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gris-leger);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--noir); background: var(--blanc); outline: none; transition: border-color var(--transition);
}
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--vert-vif); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit {
  width: 100%; padding: 1rem; background: var(--vert-vif); color: var(--blanc);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition);
}
.form__submit:hover { background: #35a827; }
.form__error {
  margin-top: 0.75rem; font-size: var(--text-small);
  color: #c0392b; text-align: center; line-height: 1.5;
}
.form__optional {
  font-size: var(--text-xsmall); font-weight: 400;
  color: var(--gris-texte); text-transform: none; letter-spacing: 0;
}

.pourquoi-diag .container,
.pourquoi-diag .enjeux__list,
.process .container,
.pourquoi-nous .container,
.contact .container { position: relative; z-index: 1; }
/* ── Nav tel ─────────────────────────────────────────────── */
.nav__tel {
  font-size: 0.8rem; font-weight: 600 !important;
  color: rgba(255,255,255,0.9) !important;
  letter-spacing: 0.02em; opacity: 1 !important;
}
.nav__tel:hover { color: var(--vert-vif) !important; }

/* ── Services note ───────────────────────────────────────── */
.services__note {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #f0f7ee; border-left: 3px solid var(--vert-vif);
  border-radius: 0 6px 6px 0; padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.services__note-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.services__note-text { font-size: var(--text-small); color: var(--gris-texte); line-height: var(--line-height); }
.services__note-text strong { color: var(--vert-foret); }

/* ── Équipe ──────────────────────────────────────────────── */
.equipe {
  padding: 6rem 0; background: var(--blanc);
  background-size: cover; background-position: center;
  position: relative;
}
.equipe::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.88);
}
.equipe__intro {
  color: var(--gris-texte); font-size: var(--text-body);
  margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.equipe__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}
.equipe .container { position: relative; z-index: 1; }
.membre-card {
  border: 1px solid var(--gris-leger); border-radius: 10px;
  overflow: hidden; background: var(--blanc);
  transition: box-shadow var(--transition), transform var(--transition);
}
.membre-card:hover { box-shadow: 0 12px 40px rgba(44,74,30,0.1); transform: translateY(-3px); }
.membre-card__photo {
  height: 220px; background-size: cover; background-position: center top;
  background-color: var(--beige);
}
.membre-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f0e4 0%, #d0e2c8 100%);
}
.membre-card__initiales {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--vert-foret); opacity: 0.35;
}
.membre-card__body { padding: 1.75rem; }
.membre-card__nom {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--vert-foret); margin-bottom: 0.35rem;
}
.membre-card__titre {
  font-size: var(--text-small); color: var(--vert-vif); font-weight: 600;
  margin-bottom: 1rem; line-height: 1.4;
}
.membre-card__details {
  list-style: none; display: flex; flex-direction: column; gap: 0.4rem;
}
.membre-card__details li {
  font-size: var(--text-small); color: var(--gris-texte);
  padding-left: 1rem; position: relative;
}
.membre-card__details li::before {
  content: '—'; position: absolute; left: 0; color: var(--vert-vif); font-weight: 700;
}

/* ── Argument highlight ──────────────────────────────────── */
.argument--highlight {
  border-color: var(--vert-vif);
  background: linear-gradient(135deg, #f0f9ee 0%, #e8f5e4 100%);
  grid-column: 1 / -1;
}
.argument--highlight .argument__title { color: var(--vert-foret); font-size: 1.05rem; }

/* ── Contact btn tel ─────────────────────────────────────── */
.contact__cta-tel { margin-bottom: 2rem; }
.contact__btn-tel {
  font-size: 1.1rem; padding: 1rem 2.5rem;
  display: inline-block; letter-spacing: 0.02em;
}

/* ── Modal ───────────────────────────────────────────────── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.55); align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal--open { display: flex; }
.modal__box {
  background: var(--blanc); border-radius: 10px;
  max-width: 620px; width: 100%; padding: 1.75rem;
  position: relative; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal__box--wide { max-width: 860px; }
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.1rem;
  color: var(--gris-texte); cursor: pointer; line-height: 1;
  padding: 0.25rem 0.5rem; border-radius: 4px;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--beige); }
.modal__title {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--vert-foret); margin-bottom: 0.2rem;
}
.modal__subtitle {
  font-size: var(--text-xsmall); font-weight: 600;
  color: var(--vert-vif); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.modal__text {
  font-size: var(--text-small); color: var(--gris-texte);
  line-height: var(--line-height); margin-bottom: 0.75rem;
}
.modal__label {
  font-size: var(--text-small); font-weight: 600;
  color: var(--vert-foret); margin-bottom: 0.4rem;
}
.modal__list {
  list-style: none; display: flex; flex-direction: column; gap: 0.3rem;
}
.modal__list li {
  font-size: var(--text-small); color: var(--gris-texte);
  line-height: 1.4;
  padding-left: 1.25rem; position: relative;
}
.modal__list li::before {
  content: '→'; color: var(--vert-vif); font-weight: 700;
  position: absolute; left: 0;
}

/* Carte outil cliquable */
.outil-card--clickable { cursor: pointer; }
.outil-card--clickable:hover { border-color: var(--vert-vif); transform: translateY(-4px); }
.outil-card__more {
  display: inline-block; margin-top: 0.75rem;
  font-size: var(--text-xsmall); font-weight: 600;
  color: var(--vert-vif); letter-spacing: 0.05em;
}
.service-card--clickable:hover { box-shadow: 0 12px 40px rgba(44,74,30,0.15); transform: translateY(-3px); }
.service-card__more {
  display: inline-block; margin-top: 1rem;
  font-size: var(--text-xsmall); font-weight: 600;
  color: var(--vert-vif); letter-spacing: 0.05em;
}

/* Grille outils dans modal */
.tools-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; margin-top: 1.5rem;
}
.tool-item { text-align: center; }
.tool-item__photo {
  width: 100%; aspect-ratio: 1;
  background-size: cover; background-position: center;
  border-radius: 8px; margin-bottom: 0.5rem;
}
.tool-item__photo--placeholder {
  background-color: var(--gris-leger);
  position: relative;
}
.tool-item__photo--placeholder::after {
  content: '📷'; font-size: 1.5rem; opacity: 0.3;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.tool-item__name {
  font-size: var(--text-xsmall); color: var(--gris-texte);
  font-weight: 500; line-height: 1.3;
}

/* ── Carrousel ───────────────────────────────────────────── */
.carousel {
  position: relative; margin-top: 1.5rem;
  border-radius: 8px; overflow: hidden;
}
.carousel__track {
  display: flex; transition: transform 0.4s ease;
}
.carousel__slide {
  min-width: 100%; height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--gris-leger);
}
.carousel__slide img {
  width: 100%; height: 280px; object-fit: contain; flex-shrink: 0;
}
.carousel__caption {
  font-size: var(--text-xsmall); color: var(--gris-texte);
  text-align: center; padding: 0.4rem 1rem;
  font-style: italic; flex-shrink: 0;
}
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(44,74,30,0.75); color: var(--blanc);
  border: none; cursor: pointer; font-size: 2rem; line-height: 1;
  padding: 0.5rem 0.9rem; border-radius: 4px;
  transition: background var(--transition);
}
.carousel__btn:hover { background: var(--vert-foret); }
.carousel__btn--prev { left: 0.75rem; }
.carousel__btn--next { right: 0.75rem; }
.carousel__dots {
  display: flex; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 0 0.25rem;
}
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gris-leger); border: none; cursor: pointer;
  transition: background var(--transition);
}
.carousel__dot--active { background: var(--vert-vif); }

.footer { background: #1a2e11; color: rgba(255,255,255,0.45); padding: 2rem; text-align: center; font-size: 0.8rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services { grid-template-columns: 1fr; }
  .services__photo { min-height: 300px; }
  .services__content { padding: 3rem 2rem; }
  .services__grid, .services__grid--2 { grid-template-columns: 1fr; max-width: 100%; }
  .outils__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .livrables { grid-template-columns: 1fr; }
  .livrables__photo { min-height: 280px; }
  .livrables__content { padding: 3rem 2rem; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__visual { order: -1; }
  .hero__logo-large { width: 130px; }
  .hero__subtitle { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .enjeu, .enjeu--reverse { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .enjeu--reverse .enjeu__spacer { order: 0; }
  .enjeu--reverse .enjeu__body { order: 1; }
  .enjeu__text { max-width: 100%; }
  .pourquoi-nous__header { flex-direction: column; text-align: center; }
  .pourquoi-nous__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--vert-foret);
    padding: 0.5rem 2rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.85rem 0; width: 100%; }
  .nav__cta { display: inline-block; margin-top: 0.5rem; }
  .hero { padding-top: 90px; }
  .process__grid { grid-template-columns: 1fr; }
  .pourquoi-diag__grid { grid-template-columns: repeat(2, 1fr); }
  .equipe__grid { grid-template-columns: 1fr; }
  .argument--highlight { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
