/* souleymaneconde.com — styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B2E;
  --navy2:  #152438;
  --navy3:  #1C3050;
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  --cream:  #FAFAF8;
  --white:  #FFFFFF;
  --ink:    #111827;
  --ink2:   #1F2937;
  --ink3:   #374151;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.07), 0 10px 40px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color .18s; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.2; color: var(--ink); }
p   { color: var(--ink3); line-height: 1.75; }
ul  { padding-left: 1.25rem; }
li  { margin-bottom: .35rem; }
strong { font-weight: 600; color: var(--ink); }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; width: 100%; }

/* ── SECTIONS ── */
.sec         { padding: 5rem 0; background: var(--white); }
.sec-cream   { padding: 5rem 0; background: var(--cream); }
.sec-navy    { padding: 5rem 0; background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat; }
.sec-navy2   { padding: 5rem 0; background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat; }

/* ── SECTION HEADER ── */
.sh { margin-bottom: 3rem; }
.sh-center { text-align: center; }
.sh-center .sh-line { margin: .75rem auto 0; }

.sh-eyebrow {
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .6rem; display: block;
}
.sh-eyebrow-light { color: var(--gold2); }

.sh-title   { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--ink); }
.sh-title-w { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--white); }

.sh-line { width: 48px; height: 3px; background: var(--gold); margin-top: .75rem; border-radius: 2px; }

.sh-desc   { font-size: 16px; color: var(--ink3); max-width: 580px; margin-top: .9rem; line-height: 1.7; }
.sh-desc-w { font-size: 16px; color: rgba(255,255,255,.65); max-width: 580px; margin-top: .9rem; line-height: 1.7; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 999;
  height: 66px;
  background: #071426;
  border-bottom: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav-monogram {
  width: 38px; height: 38px; background: var(--gold); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  font-weight: 700; color: var(--navy); flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: var(--gold2); line-height: 1.2; }
.nav-sub  { font-size: 9.5px; color: rgba(255,255,255,.45); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,.7); font-size: 12px; font-weight: 500;
  letter-spacing: .8px; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold2); border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 9px 20px; border-radius: 4px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2); color: var(--navy); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { width: 22px; height: 2px; background: rgba(255,255,255,.8); display: block; border-radius: 2px; }

.mob-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: #071426; z-index: 998; padding: 1rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.mob-nav.open { display: block; }
.mob-nav a {
  display: block; color: rgba(255,255,255,.8); font-size: 14px;
  letter-spacing: .5px; text-transform: uppercase; padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mob-nav a:last-child { border: none; }
.mob-nav a:hover { color: var(--gold2); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 4px; font-size: 13px;
  font-weight: 600; letter-spacing: .5px; cursor: pointer;
  border: none; transition: all .2s; font-family: 'Outfit', sans-serif;
  text-decoration: none; white-space: nowrap;
}
.btn-gold   { background: var(--gold);  color: var(--navy); }
.btn-gold:hover { background: var(--gold2); color: var(--navy); }

.btn-navy   { background: #071426;  color: var(--white); }
.btn-navy:hover { background: var(--navy3); }

.btn-white  { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); }
.btn-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid rgba(201,168,76,.5); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 12px; }

/* ── HERO ── */
.hero {
  background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat;
  min-height: calc(100vh - 66px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

.hero-dots { display: none; }

.hero-glow {
  position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  flex: 1; display: flex; align-items: center;
  max-width: 1160px; margin: 0 auto; width: 100%;
  padding: 4rem 2rem; gap: 4rem; position: relative; z-index: 1;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero-eyebrow-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white); line-height: 1.05;
  font-weight: 700; margin-bottom: .5rem;
}
.hero-name-gold { color: var(--gold2); }

.hero-role {
  font-size: 14px; color: rgba(255,255,255,.55);
  font-weight: 300; letter-spacing: .5px; margin-bottom: 1.75rem;
}

.hero-quote {
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem; border-radius: 0 6px 6px 0;
  margin-bottom: 1.75rem;
}
.hero-quote p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-style: italic; color: rgba(255,255,255,.85); line-height: 1.55;
}
.hero-quote cite { display: block; font-size: 10.5px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .5rem; font-style: normal; }

.hero-tagline { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 520px; margin-bottom: 2rem; font-weight: 300; }

.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; }

.hero-photo-col { flex-shrink: 0; }
.hero-photo-card {
  width: 260px;
  border-radius: 8px; overflow: hidden;
  border: 2px solid rgba(201,168,76,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-photo-card img {
  width: 100%; height: 300px; object-fit: cover;
  object-position: center 10%; display: block;
}
.hero-photo-footer {
  background: rgba(13,27,46,.95);
  padding: .8rem 1rem; border-top: 1px solid rgba(201,168,76,.2);
}
.hero-photo-footer .name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold2); font-weight: 600; }
.hero-photo-footer .role { font-size: 10.5px; color: rgba(255,255,255,.5); margin-top: 2px; }

.hero-stats {
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.hero-stat { padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border: none; }
.hero-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stat-l { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat;
  padding: 4rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(7,20,38,0.65);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-bc { font-size: 12.5px; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.page-hero-bc a { color: var(--gold); }
.page-hero-bc a:hover { color: var(--gold2); }
.page-hero-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; display: block; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .75rem; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.6); max-width: 600px; line-height: 1.7; font-weight: 300; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── CARTES SERVICE ── */
.svc-card {
  background: var(--white); border-radius: 8px;
  border: 1.5px solid var(--border);
  overflow: hidden; transition: transform .22s, box-shadow .22s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.svc-card-header {
  background: #071426; padding: 1.4rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.svc-icon { font-size: 24px; }
.svc-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; background: rgba(201,168,76,.2);
  color: var(--gold); padding: 4px 10px; border-radius: 20px;
}

.svc-body { padding: 1.5rem; }
.svc-title { font-size: 1.2rem; color: var(--ink); margin-bottom: .6rem; }
.svc-desc  { font-size: 14px; color: var(--ink3); line-height: 1.65; margin-bottom: 1rem; }

.svc-list { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.svc-list li {
  font-size: 13.5px; color: var(--ink3); padding: .3rem 0;
  border-bottom: 1px solid var(--border); display: flex; gap: .5rem;
}
.svc-list li:last-child { border: none; }
.svc-list li::before { content: "›"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.svc-meta  { display: flex; gap: .75rem; font-size: 12px; color: var(--muted); margin-bottom: 1rem; flex-wrap: wrap; }
.svc-price { font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.1rem; }

/* ── CARTES PROJET ── */
.proj-card {
  background: var(--navy2); border-radius: 8px;
  border: 1.5px solid rgba(201,168,76,.15); overflow: hidden;
  position: relative; transition: transform .22s, border-color .22s;
}
.proj-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.proj-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }

.proj-head { padding: 1.5rem 1.5rem .5rem; }
.proj-year { font-size: 10.5px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .35rem; font-weight: 600; }
.proj-client { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: .6rem; }
.proj-title { font-size: 1.05rem; color: var(--white); font-weight: 600; line-height: 1.3; }
.proj-body { padding: .75rem 1.5rem 1.5rem; }
.proj-desc { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 1rem; }
.proj-impact {
  background: rgba(201,168,76,.08); border-left: 2px solid rgba(201,168,76,.45);
  padding: .6rem 1rem; margin-bottom: 1rem; font-size: 13px;
  color: rgba(255,255,255,.58); font-style: italic; border-radius: 0 4px 4px 0;
}
.proj-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: 11px; background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25); color: var(--gold2);
  padding: 3px 10px; border-radius: 20px; font-weight: 500;
}

/* ── CARTES TUTORIEL ── */
.tut-card {
  background: var(--white); border-radius: 8px;
  border: 1.5px solid var(--border); overflow: hidden;
  display: block; transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.tut-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tut-stripe { height: 4px; }
.tut-stripe-sec   { background: #DC2626; }
.tut-stripe-virt  { background: #2563EB; }
.tut-stripe-win   { background: #D97706; }
.tut-stripe-linux { background: #16A34A; }
.tut-stripe-infra { background: #7C3AED; }

.tut-head { padding: .9rem 1.2rem .7rem; display: flex; justify-content: space-between; align-items: center; }
.tut-cat { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.tut-cat-sec   { color: #DC2626; }
.tut-cat-virt  { color: #2563EB; }
.tut-cat-win   { color: #D97706; }
.tut-cat-linux { color: #16A34A; }
.tut-cat-infra { color: #7C3AED; }

.tut-lvl { font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.tut-debut { background: #DCFCE7; color: #15803D; }
.tut-inter { background: #FEF9C3; color: #A16207; }
.tut-adv   { background: #FEE2E2; color: #DC2626; }
.tut-lvl--debut { background: #DCFCE7; color: #15803D; font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.tut-lvl--inter { background: #FEF9C3; color: #A16207; font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.tut-lvl--adv   { background: #FEE2E2; color: #DC2626; font-size: 10.5px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

.tut-body { padding: .5rem 1.2rem 1.4rem; }
.tut-title { font-size: 1.05rem; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; font-weight: 700; }
.tut-desc  { font-size: 13.5px; color: var(--ink3); line-height: 1.6; margin-bottom: .9rem; }
.tut-foot  { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.tut-read  { color: var(--gold); font-weight: 600; }

/* ── FILTRES ── */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.filter-btn {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--ink3); font-size: 12.5px; font-weight: 500;
  padding: 7px 16px; border-radius: 20px; cursor: pointer;
  transition: all .2s; font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: #071426; color: var(--white); border-color: var(--navy);
}
.filter-btn-dark {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.filter-btn-dark:hover, .filter-btn-dark.active {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}

/* ── ARTICLE ── */
.art-container { max-width: 820px; margin: 0 auto; padding: 4rem 2rem; }
.art-meta {
  display: flex; gap: 1.25rem; font-size: 12.5px; color: var(--muted);
  margin-bottom: 2.25rem; padding-bottom: 1.25rem;
  border-bottom: 1.5px solid var(--border); flex-wrap: wrap; align-items: center;
}
.art-body { font-size: 16px; color: var(--ink3); line-height: 1.85; }
.art-body h2 {
  font-size: 1.55rem; color: var(--ink); margin: 2.25rem 0 .75rem;
  padding-bottom: .5rem; border-bottom: 2px solid #F3F4F6; font-weight: 700;
}
.art-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 1.75rem 0 .5rem; }
.art-body p { margin-bottom: 1rem; }
.art-body ul, .art-body ol { margin-bottom: 1rem; }
.art-body li { margin-bottom: .4rem; color: var(--ink3); }
.art-body strong { font-weight: 700; color: var(--ink); }

.code-block {
  background: #0F172A; border-radius: 8px;
  padding: 1.25rem 1.5rem; margin: 1.25rem 0; overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
}
.code-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,.3); letter-spacing: 1px; text-transform: uppercase;
  display: block; margin-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: .4rem;
}
.code-block pre {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: #86EFAC; line-height: 1.65; white-space: pre; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ibox, .ibox--note, .ibox--warn, .ibox--tip, .ibox--danger {
  border-radius: 6px; padding: 1rem 1.25rem; margin: 1.25rem 0; font-size: 14.5px; border-left: 4px solid;
}
.ibox--note   { background: #EFF6FF; border-color: #3B82F6; color: #1D4ED8; }
.ibox--warn   { background: #FFFBEB; border-color: #F59E0B; color: #92400E; }
.ibox--tip    { background: #F0FDF4; border-color: #22C55E; color: #166534; }
.ibox--danger { background: #FEF2F2; border-color: #EF4444; color: #991B1B; }
.ibox--note strong, .ibox--warn strong, .ibox--tip strong, .ibox--danger strong { font-weight: 700; }

.art-author-box {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 1.4rem; margin-top: 3rem;
}
.art-author-photo { width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; object-position: center 10%; flex-shrink: 0; }
.art-author-name  { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.art-author-role  { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }

.timeline { display: flex; flex-direction: column; }
.tl-item { position: relative; padding: 0 0 1.75rem 1.5rem; border-left: 2px solid rgba(201,168,76,.25); }
.tl-item:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
.tl-dot { position: absolute; left: -6px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--cream); }
.tl-date { font-size: 11px; color: var(--gold); font-weight: 600; margin-bottom: .25rem; }
.tl-role { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.tl-org  { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.skill-tag {
  display: inline-block; font-size: 12.5px; font-weight: 500;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--ink3); padding: 5px 13px; border-radius: 20px;
  margin: .25rem; transition: all .18s; cursor: default;
}
.skill-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.contact-info h3 { font-size: 1.6rem; color: var(--white); margin-bottom: .75rem; }
.contact-info p  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1.75rem; }

.contact-item { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.contact-item-icon {
  width: 38px; height: 38px; background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-item-text { font-size: 14.5px; color: rgba(255,255,255,.75); }
.contact-item-text a { color: rgba(255,255,255,.75); }
.contact-item-text a:hover { color: var(--gold2); }

.certif-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.75rem; }
.certif {
  font-size: 11.5px; font-weight: 600;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
  color: var(--gold2); padding: 5px 13px; border-radius: 20px; letter-spacing: .5px;
}

.contact-form-card {
  background: var(--white); border-radius: 10px;
  padding: 2.25rem; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.contact-form-title { font-size: 1.4rem; color: var(--ink); margin-bottom: 1.5rem; font-weight: 700; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--ink3); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream); border: 1.5px solid var(--border);
  color: var(--ink); padding: .75rem 1rem; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: 14.5px; outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: .75rem; }

/* ── CTA BAND ── */
.cta-band {
  background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat; padding: 4rem 0;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  font-style: italic; color: rgba(255,255,255,.88); line-height: 1.5; margin-bottom: .4rem;
}
.cta-band-by { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: #050E1A url('../img/bg-africa.svg') center bottom / cover no-repeat;
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 300px; margin-top: .75rem; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.5); margin-bottom: .6rem; transition: color .18s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem;
}

/* ── WHATSAPP ── */
.wa-btn, .wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .2s; text-decoration: none;
}
.wa-btn:hover, .wa-float:hover { transform: scale(1.1); }
.wa-btn svg, .wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-btn::before, .wa-float::before {
  content: ''; position: absolute; width: 58px; height: 58px;
  border-radius: 50%; background: rgba(37,211,102,.25);
  animation: wa-pulse 2.2s ease-out infinite;
}
.wa-btn::after, .wa-float::after {
  content: 'WhatsApp'; position: absolute; right: 66px;
  background: #071426; color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-btn:hover::after, .wa-float:hover::after { opacity: 1; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(1.6); opacity: 0; } }

/* ── QR CODE ── */
.qr-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--cream); }
.qr-card { background: var(--white); border-radius: 12px; padding: 2.5rem 2rem; max-width: 420px; width: 100%; text-align: center; border: 1.5px solid var(--border); box-shadow: var(--shadow-lg); }
.qr-avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--gold); object-fit: cover; object-position: center 10%; margin: 0 auto 1rem; display: block; }
.qr-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--ink); font-weight: 700; margin-bottom: .3rem; }
.qr-title { font-size: 12.5px; color: var(--muted); margin-bottom: 1.75rem; }
.qr-box   { background: var(--white); border-radius: 8px; padding: 1.25rem; border: 1.5px solid var(--border); margin-bottom: 1.75rem; display: inline-block; }
.qr-label { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .75rem; }
.scan-hint { background: rgba(201,168,76,.08); border: 1.5px solid rgba(201,168,76,.2); border-radius: 8px; padding: .8rem 1rem; font-size: 13px; color: var(--ink3); margin-bottom: 1.75rem; line-height: 1.5; }
.scan-hint strong { color: var(--gold); }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.75rem; text-align: left; }
.contact-list li { display: flex; align-items: center; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink3); }
.contact-list li:last-child { border: none; }
.contact-list .icon { width: 34px; height: 34px; background: rgba(201,168,76,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-list a { color: var(--ink3); }
.contact-list a:hover { color: var(--gold); }
.btn-download { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 13px; border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; transition: background .2s; margin-bottom: .75rem; }
.btn-download:hover { background: var(--gold2); }
.btn-back { display: inline-block; font-size: 12.5px; color: var(--muted); transition: color .2s; }
.btn-back:hover { color: var(--gold); }

/* ── PANEL AFRINOV ── */
.panel-hero { background: #071426 url('../img/bg-africa.svg') center center / cover no-repeat; padding: 0; position: relative; overflow: hidden; }
.panel-hero-grid { position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px); background-size: 32px 32px; }
.panel-hero-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; max-width: 1160px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.panel-hero-text  { padding: 4rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.panel-hero-photo { position: relative; overflow: hidden; }
.panel-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: brightness(.75); }
.panel-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,27,46,.92) 0%, transparent 50%); }
.event-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); padding: 6px 14px; border-radius: 20px; margin-bottom: 1.5rem; }
.event-badge-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.panel-title    { font-size: clamp(1.8rem, 3.5vw, 2.7rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; font-weight: 700; }
.panel-title em { color: var(--gold2); font-style: normal; }
.panel-infos { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.panel-info-item { display: flex; align-items: center; gap: .5rem; font-size: 13px; color: rgba(255,255,255,.55); }
.panel-info-icon { width: 30px; height: 30px; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.hero-quote-box { border-left: 3px solid var(--gold); padding: 1rem 1.25rem; background: rgba(201,168,76,.08); border-radius: 0 6px 6px 0; }
.hero-quote-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.55; }
.hero-quote-box cite { display: block; font-size: 10.5px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .5rem; font-style: normal; }
.intervention-wrap { max-width: 860px; margin: 0 auto; }
.tour-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow); }
.tour-header { background: #071426; padding: 1.4rem 2rem; display: flex; align-items: center; gap: 1.25rem; }
.tour-num  { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; line-height: 1; flex-shrink: 0; opacity: .8; }
.tour-label    { font-size: 10.5px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: .3rem; font-weight: 600; }
.tour-question { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); font-weight: 600; line-height: 1.3; }
.tour-body { padding: 2rem; }
.tour-body p { font-size: 15.5px; color: var(--ink3); line-height: 1.85; margin-bottom: 1rem; }
.tour-body p strong { font-weight: 700; color: var(--ink); }
.tour-body ul { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.tour-body ul li { font-size: 15px; color: var(--ink3); padding: .4rem 0; border-bottom: 1px solid var(--border); display: flex; gap: .6rem; }
.tour-body ul li:last-child { border: none; }
.tour-body ul li::before { content: "›"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.tour-body ol { counter-reset: ol; list-style: none; padding: 0; margin-bottom: 1.25rem; }
.tour-body ol li { font-size: 15px; color: var(--ink3); padding: .6rem 0 .6rem 2.5rem; border-bottom: 1px solid var(--border); position: relative; counter-increment: ol; }
.tour-body ol li:last-child { border: none; }
.tour-body ol li::before { content: counter(ol); position: absolute; left: 0; top: .65rem; width: 22px; height: 22px; background: #071426; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 700; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.cas-terrain { background: #FFFBEB; border: 1.5px solid #FDE68A; border-left: 4px solid #F59E0B; padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
.cas-terrain-label { font-size: 10.5px; color: #92400E; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: .5rem; }
.cas-terrain p { font-size: 14.5px !important; color: #1F2937 !important; font-style: italic; line-height: 1.75 !important; margin: 0 !important; }
.impact-quote { background: #071426; border-radius: 8px; padding: 1.5rem 2rem; margin: 1.5rem 0; border-left: 4px solid var(--gold); }
.impact-quote p { font-family: 'Cormorant Garamond', serif !important; font-size: 1.25rem !important; font-style: italic; color: rgba(255,255,255,.9) !important; line-height: 1.5 !important; margin: 0 !important; }
.impact-quote cite { display: block; font-size: 10.5px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .6rem; font-style: normal; }
.closing-formula { background: #071426; border-radius: 10px; padding: 2.5rem; border: 1.5px solid rgba(201,168,76,.2); text-align: center; margin-top: 3rem; }
.closing-formula p { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.5; margin-bottom: .6rem; }
.closing-formula cite { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-style: normal; font-weight: 600; }
.photos-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.photos-strip img { width: 100%; height: 260px; object-fit: cover; object-position: center top; border-radius: 8px; border: 1.5px solid var(--border); }
.sec-tag   { font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; display: block; }
.sec-title { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--ink); }
.sec-line  { width: 48px; height: 3px; background: var(--gold); margin-top: .75rem; border-radius: 2px; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.shown { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .sec, .sec-cream, .sec-navy, .sec-navy2 { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .burger    { display: flex; }
  .hero-inner { flex-direction: column; padding: 3rem 1.25rem; gap: 2.5rem; }
  .hero-photo-col { align-self: center; }
  .hero-photo-card { width: 220px; }
  .hero-photo-card img { height: 260px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat  { padding: 1rem 1.25rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.25rem 1.25rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .panel-hero-inner { grid-template-columns: 1fr; }
  .panel-hero-photo { height: 240px; }
  .panel-hero-photo::after { background: linear-gradient(0deg, rgba(13,27,46,.94) 0%, transparent 55%); }
  .panel-hero-text { padding: 2.5rem 1.25rem; }
  .tour-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .tour-body { padding: 1.5rem; }
  .photos-strip { grid-template-columns: 1fr; }
  .art-container { padding: 2.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav { padding: 0 1rem; }
  .hero-stat-n { font-size: 1.6rem; }
  .btn { padding: 11px 18px; font-size: 12px; }
  .contact-form-card { padding: 1.5rem 1rem; }
  .qr-card { padding: 2rem 1.25rem; }
}

/* aliases pour compatibilite pages importees */
.bg-africa          { /* rien, body gere le fond */ }
.nav-title-wrap     { display: flex; flex-direction: column; }
.nav-role           { font-size: 9.5px; color: rgba(255,255,255,.45); letter-spacing: 1.5px; text-transform: uppercase; }
.footer             { background: #050E1A url('../img/bg-africa.svg') center bottom / cover no-repeat; border-top: 1px solid rgba(201,168,76,.15); padding: 4rem 0 0; }
.footer-brand       { /* handled inline */ }
.footer-brand-text  { display: flex; flex-direction: column; }
.page-hero__breadcrumb { font-size: 12.5px; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.page-hero__breadcrumb a { color: #C9A84C; }
.section            { padding: 5rem 0; background: #FFFFFF; }

/* Réseaux sociaux footer */
.footer-social {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
  flex-shrink: 0;
  margin-bottom: 0;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .footer-social { justify-content: center; }
}

/* Projets en vedette (2 colonnes) responsive */
@media (max-width: 768px) {
  [style*="grid-column:span 2"],
  [style*="grid-column: span 2"] { grid-column: span 1 !important; }
}
