/* ============================================================
   Jouini Consulting Group — site vitrine
   Palette fixe claire et premium (navy/gold sur fond blanc/ivoire)
   ============================================================ */

:root{
  --bg:#FCFBF8;
  --surface:#FFFFFF;
  --surface-alt:#F7F8FA;
  --surface-gold:#FBF6EB;
  --text:#20252B;
  --text-muted:#5B6472;
  --line:#E5E1D6;
  --navy:#163A63;
  --navy-deep:#0B1630;
  --gold:#B9863A;
  --gold-deep:#8A6222;
  --gold-soft:#E9D19C;
  --shadow: 0 1px 2px rgba(20,20,10,.04), 0 10px 28px rgba(20,20,10,.06);
  --radius: 10px;
}

*{ box-sizing:border-box; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Montserrat',sans-serif; color:var(--navy-deep); margin:0; text-wrap:balance; }
p{ margin:0; }
a{ color:var(--navy); }
img{ max-width:100%; display:block; }
.wrap{ max-width:1120px; margin:0 auto; padding-inline:24px; }
section{ padding-block:88px; }
@media (max-width:720px){ section{ padding-block:56px; } }

.eyebrow{
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:.76rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--gold-deep);
  display:inline-flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); display:inline-block; }

.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:.92rem;
  padding:14px 26px; border-radius:4px; text-decoration:none; cursor:pointer;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-gold{ background:var(--gold); color:#FFFBF3; box-shadow:0 8px 20px rgba(185,134,58,.28); }
.btn-gold:hover{ background:var(--gold-deep); }
.btn-ghost{ background:transparent; color:var(--navy-deep); border-color:var(--navy-deep); }
.btn-ghost:hover{ background:var(--navy-deep); color:#fff; }
.btn-sm{ padding:10px 18px; font-size:.82rem; }

/* ---------- Header / nav ---------- */
header{
  position:sticky; top:0; z-index:50; background:rgba(252,251,248,.92);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--line);
}
.nav{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:12px; padding-block:14px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; min-width:0; }
.brand img{ height:38px; width:auto; flex:none; }
.brand .word{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:1.02rem; color:var(--navy-deep); letter-spacing:.01em; white-space:nowrap; }
.brand .word span{ display:block; font-weight:600; font-size:.62rem; letter-spacing:.16em; color:var(--gold-deep); text-transform:uppercase; margin-top:1px; white-space:nowrap; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:.86rem;
  color:var(--text); text-decoration:none; position:relative;
}
.nav-links a:hover{ color:var(--navy); }
.nav-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle-mobile{ display:none; background:none; border:none; cursor:pointer; padding:6px; flex:none; color:var(--navy-deep); }
.nav-toggle-mobile svg{ width:24px; height:24px; }

@media (max-width:860px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0; z-index:40; background:var(--surface);
    flex-direction:column; align-items:flex-start; gap:0; padding:8px 24px 20px;
    border-bottom:1px solid var(--line); box-shadow:var(--shadow);
    transform:translateY(-12px); opacity:0; pointer-events:none; transition:.18s ease;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ padding:12px 0; width:100%; border-bottom:1px solid var(--line); }
  .nav-toggle-mobile{ display:block; }
  .nav-actions .btn.btn-gold.btn-sm{ display:none; }
}

@media (max-width:480px){
  .brand .word{ font-size:.86rem; }
  .brand .word span{ display:none; }
  .brand img{ height:32px; }
  .nav{ gap:8px; }
}

/* ---------- Hero ---------- */
.hero{ position:relative; overflow:hidden; padding-block:96px 100px; }
.hero-glow{
  position:absolute; top:-180px; right:-160px; width:560px; height:560px; border-radius:50%;
  background:radial-gradient(circle, rgba(185,134,58,.16), transparent 70%); pointer-events:none;
}
.hero-glow2{
  position:absolute; bottom:-220px; left:-200px; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(22,58,99,.08), transparent 70%); pointer-events:none;
}
.hero-grid{ position:relative; display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }
.hero h1{ font-size:2.7rem; line-height:1.12; font-weight:700; margin-bottom:22px; }
@media (max-width:720px){ .hero h1{ font-size:2rem; } }
.hero h1 em{ font-style:normal; color:var(--gold-deep); }
.hero .lede{ font-size:1.08rem; color:var(--text-muted); max-width:52ch; margin-bottom:30px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px; }
.hero-motto{
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:.86rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold-deep); margin-bottom:28px;
}
.hero-facts{ display:flex; gap:30px; flex-wrap:wrap; }
.hero-fact .num{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:1.15rem; color:var(--navy-deep); }
.hero-fact .lbl{ font-size:.82rem; color:var(--text-muted); max-width:20ch; }

.hero-card{
  background:var(--surface); border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow);
  padding:34px; position:relative;
}
.hero-card .tag{
  font-family:'Montserrat',sans-serif; font-weight:700; font-size:.7rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold-deep); background:var(--surface-gold);
  border:1px solid var(--gold-soft); border-radius:20px; padding:5px 12px; display:inline-block; margin-bottom:18px;
}
.hero-card ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.hero-card li{ display:flex; gap:12px; align-items:flex-start; font-size:.94rem; }
.hero-card li svg{ flex:none; width:19px; height:19px; margin-top:2px; color:var(--gold); }

/* ---------- Sections ---------- */
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head h2{ font-size:2rem; margin-bottom:14px; }
.section-head p{ color:var(--text-muted); font-size:1.02rem; }
.bg-alt{ background:var(--surface-alt); }

/* about */
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:start; }
@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } }
.about-frameworks{ display:flex; flex-direction:column; gap:16px; }
.fw-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 22px; box-shadow:var(--shadow);
}
.fw-card .name{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:.98rem; color:var(--navy-deep); margin-bottom:4px; }
.fw-card .desc{ font-size:.9rem; color:var(--text-muted); }
.credentials{ list-style:none; margin:26px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; }
.credentials li{ display:flex; gap:10px; font-size:.92rem; align-items:flex-start; }
.credentials li::before{ content:"—"; color:var(--gold); flex:none; }

/* services */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .services-grid{ grid-template-columns:1fr; } }
.svc-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px; box-shadow:var(--shadow); display:flex; flex-direction:column; gap:12px;
}
.svc-card .icon{
  width:44px; height:44px; border-radius:10px; background:var(--surface-gold);
  border:1px solid var(--gold-soft); display:flex; align-items:center; justify-content:center; color:var(--gold-deep);
}
.svc-card .icon svg{ width:22px; height:22px; }
.svc-card h3{ font-size:1.02rem; }
.svc-card p{ font-size:.88rem; color:var(--text-muted); }

/* dimension internationale */
.intl-tags{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.intl-tags span{
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:.82rem; color:var(--navy-deep);
  background:var(--surface); border:1px solid var(--gold-soft); padding:9px 18px; border-radius:20px; box-shadow:var(--shadow);
}

/* méthode */
.method-list{ display:flex; flex-direction:column; }
.method-step{ display:flex; gap:26px; padding-block:24px; border-top:1px solid var(--line); }
.method-step:last-child{ border-bottom:1px solid var(--line); }
.method-step .idx{ flex:none; width:56px; font-family:'Montserrat',sans-serif; font-weight:800; font-size:1.4rem; color:var(--gold); }
.method-step .body h3{ font-size:1.05rem; margin-bottom:6px; }
.method-step .body p{ color:var(--text-muted); font-size:.92rem; max-width:62ch; }
.method-conclusion{
  margin-top:30px; text-align:center; font-family:'Montserrat',sans-serif; font-weight:600;
  color:var(--navy-deep); font-size:1.05rem;
}

/* organisations accompagnées */
.clients-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:30px; }
@media (max-width:760px){ .clients-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .clients-grid{ grid-template-columns:1fr; } }
.client-tag{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px 20px; text-align:center; font-family:'Montserrat',sans-serif; font-weight:600;
  font-size:.9rem; color:var(--navy-deep); box-shadow:var(--shadow);
}

/* pain points (pourquoi nous contacter) */
.pain-list{ list-style:none; margin:26px 0 32px; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:14px 28px; }
@media (max-width:640px){ .pain-list{ grid-template-columns:1fr; } }
.pain-list li{ display:flex; gap:10px; font-size:.96rem; align-items:flex-start; }
.pain-list li::before{ content:"—"; color:var(--gold); flex:none; }

/* contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
@media (max-width:800px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:36px;
  box-shadow:var(--shadow); display:flex; flex-direction:column; gap:18px;
}
.contact-row{ display:flex; align-items:center; gap:14px; text-decoration:none; color:var(--text); }
.contact-row .ic{
  width:40px; height:40px; border-radius:10px; background:var(--surface-gold); border:1px solid var(--gold-soft);
  display:flex; align-items:center; justify-content:center; color:var(--gold-deep); flex:none;
}
.contact-row .ic svg{ width:19px; height:19px; }
.contact-row .lbl{ font-size:.76rem; color:var(--text-muted); }
.contact-row .val{ font-family:'Montserrat',sans-serif; font-weight:600; font-size:.94rem; }

/* CTA banner */
.cta-banner{
  background:linear-gradient(155deg,var(--navy) 0%,var(--navy-deep) 100%);
  border-radius:20px; padding:56px; text-align:center; color:#fff;
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.cta-banner h2{ color:#fff; font-size:1.9rem; max-width:32ch; }
.cta-banner p{ color:#C9D3E0; max-width:48ch; }
.cta-banner .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.5); }
.cta-banner .btn-ghost:hover{ background:#fff; color:var(--navy-deep); }

/* footer */
.footer{ background:var(--surface-alt); border-top:1px solid var(--line); padding-block:64px 32px; }
.footer-grid{ display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:40px; margin-bottom:40px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr; gap:30px; } }
.footer-brand img{ height:30px; margin-bottom:12px; }
.footer-brand .motto{ font-family:'Montserrat',sans-serif; font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:.78rem; color:var(--gold-deep); margin-bottom:10px; }
.footer-brand p{ font-size:.86rem; color:var(--text-muted); max-width:34ch; }
.footer h4{ font-family:'Montserrat',sans-serif; font-weight:700; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; color:var(--navy-deep); margin-bottom:14px; }
.footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer a{ color:var(--text-muted); text-decoration:none; font-size:.9rem; }
.footer a:hover{ color:var(--navy); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:24px; border-top:1px solid var(--line); font-size:.8rem; color:var(--text-muted); }

/* utility */
.center{ text-align:center; }
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

@media (max-width:720px){
  .services-grid{ grid-template-columns:1fr; }
  .cta-banner{ padding:36px 22px; }
}
