@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

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

:root {
  --navy: #1e2d3d;
  --navy-light: #2a3f56;
  --gold: #c8a774;
  --gold-light: #ddc08f;
  --cyan: #0cc0df;
  --cyan-dark: #0aaac7;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #222222;
  --text-muted: #666666;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(15, 25, 36, 0.95);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

/* wrappers pour centrer les groupes autour du logo */
.nav-left-wrap, .nav-right-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-left-wrap { justify-content: flex-end; }
.nav-right-wrap { justify-content: flex-start; }

/* les nav eux-mêmes : taille = exactement le contenu */
.nav-left, .nav-right {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.nav-left { margin-right: 68px; }
.nav-right { margin-left: 68px; }

.nav-left a, .nav-right a {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active {
  color: var(--gold);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  margin-top: 9px;
}


.logo-img {
  height: 110px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.footer-logo-img { height: 60px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }

.section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-heading.light { color: var(--navy); }

.section-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 680px;
}

.section-sub.light { color: var(--text-muted); }

.section-light { background: var(--white); }
.section-gray  { background: var(--gray); }
.section-dark  { background: #f2f0ec; }

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url('Vue panoramique de Paris avec la Seine.png');
  background-size: cover;
  background-position: center 55%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 30, 55, 0.48) 0%,
    rgba(15, 30, 55, 0.62) 60%,
    rgba(15, 30, 55, 0.76) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 60px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(44px, 6.9vw, 83px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 40px;
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--white);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}

.hero-text strong { color: var(--white); font-weight: 700; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: rgba(228, 222, 224, 0.75);
  color: #1a1f2b;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: rgba(228, 222, 224, 0.4); }

.btn-secondary {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: rgba(47, 83, 92, 0.75);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-secondary:hover { background: #3a6570; }

.btn-outline-white {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: rgba(228, 222, 224, 0.25);
  color: #373F4E;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-outline-white:hover { background: rgba(228, 222, 224, 0.4); }

.btn-cyan-hero {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: rgba(47, 83, 92, 0.25);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-cyan-hero:hover { background: rgba(47, 83, 92, 0.45); }

.btn-cyan {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  background: var(--cyan);
  color: var(--white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-cyan:hover { background: var(--cyan-dark); }

.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

.hero-stat {
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── INTRO BAND ─────────────────────────────── */
.intro-band {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 32px 48px;
  max-width: 900px;
  margin: 64px auto;
}

.intro-band p { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); }
.intro-band strong { color: var(--navy); font-weight: 700; }

/* ─── SECTEURS ───────────────────────────────── */
.sectors-section { background: #f9f9f9; padding: 100px 0; }
.sectors-section .section-label { text-align: center; }
.sectors-section .section-heading { color: var(--navy); text-align: center; }
.sectors-section .section-sub {
  color: var(--text-muted);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  text-align: center;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sector-card {
  position: relative;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,35,0.75) 0%, rgba(10,20,35,0.15) 60%, transparent 100%);
  transition: background 0.3s;
}

.sector-card:hover::after {
  background: linear-gradient(to top, rgba(10,20,35,0.88) 0%, rgba(10,20,35,0.35) 60%, transparent 100%);
}

.sector-card span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
}

.sector-industrie { background-image: url('Industrie.png'); }
.sector-sante     { background-image: url('Santé.png'); }
.sector-biens     { background-image: url('Biens de consommation.png'); }
.sector-tech      { background-image: url('Tech.png'); }
.sector-services  { background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=800&h=500'); }
.sector-education { background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=800&h=500'); }

/* ─── À PROPOS ───────────────────────────────── */
.apropos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.apropos-card {
  background: var(--gray);
  padding: 48px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.apropos-card blockquote { margin-top: auto; }

.card-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.apropos-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.apropos-card p { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.8; color: #555; text-align: justify; }


.apropos-card blockquote {
  border-left: 2px solid var(--navy);
  padding-left: 16px;
  margin-top: 20px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── EXPERTISES ─────────────────────────────── */
.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.expertise-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}

.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.expertises-grid:hover .expertise-card {
  opacity: 0.45;
  transform: scale(0.97);
  filter: grayscale(20%);
}

.expertises-grid:hover .expertise-card:hover {
  opacity: 1;
  background: #ffffff;
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.15);
  border-color: var(--gold);
  filter: none;
}

.expertise-card:hover::after { width: 100%; }

.expertise-icon {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}

.expertise-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.expertise-card ul { list-style: none; padding: 0; }

.expertise-card ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: color 0.2s;
}

.expertise-card:hover ul li { color: var(--navy); }

.expertise-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── ÉQUIPE ─────────────────────────────────── */
.team-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 56px;
  font-weight: 700;
}

.team-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.team-role {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.team-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #444;
  text-align: justify;
  margin-bottom: 16px;
}

.team-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

.team-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.team-links a:hover { color: var(--gold); }

.team-photo-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0 8px;
}

.team-photo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.team-photo-link svg { color: var(--gold); flex-shrink: 0; }
.team-photo-link:hover { color: var(--gold); }

.join-box {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 72px;
  align-items: stretch;
  min-height: 480px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
}

.join-image {
  position: relative;
  overflow: hidden;
}

.join-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.join-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(15,25,40,0) 50%, rgba(15,25,40,0.2) 100%);
}

.join-content {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  order: -1;
}

.join-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.join-values {
  list-style: none;
  margin: 24px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.join-values li {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}

.join-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.join-box h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.join-box p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 40px;
}

.btn-join {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  align-self: flex-start;
}

.btn-join:hover {
  background: #c8a84b;
  color: var(--navy);
}

/* ─── ACTUALITÉS ─────────────────────────────── */
.news-loading { font-family: 'Open Sans', sans-serif; font-size: 14px; color: #888; font-style: italic; margin-top: 32px; }

.news-empty {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  color: var(--navy);
  text-align: center;
  padding: 60px 0;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.news-card {
  background: var(--white);
  padding: 32px;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.news-card-date {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.news-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card p { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 20px; }

.news-card a {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.news-card a:hover { color: var(--gold); }

/* ─── TRANSACTIONS ───────────────────────────── */
.transactions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  margin-top: 8px;
}

.transaction-card { background: var(--white); padding: 36px 28px; transition: background 0.2s; }
.transaction-card:hover { background: var(--gray); }
.transaction-card.placeholder { opacity: 0.6; }

.tx-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.tx-name { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tx-sector { font-family: 'Open Sans', sans-serif; font-size: 12px; color: var(--text-muted); }

/* ─── CONTACT ────────────────────────────────── */
.contact-page {
  background: #f5f3ef;
  min-height: 100vh;
  padding: 235px 0 100px;
}

.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 72px;
}

.contact-page-header {
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 48px;
}


.contact-page-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 16px;
}

.contact-page-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

/* Carte navy : coordonnées */
.contact-card-info {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 40px;
  position: sticky;
  top: 150px;
}

.contact-card-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.contact-card-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.contact-card-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.contact-card-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
}

.contact-card-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-card-item a { color: rgba(255,255,255,0.70); text-decoration: none; transition: color 0.2s; }
.contact-card-item a:hover { color: var(--gold); }

/* Formulaire */
.contact-card-form {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.contact-hero-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.contact-hero-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-info-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 16px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.ci-icon { color: var(--gold); min-width: 20px; text-align: center; margin-top: 1px; }

.contact-info-item a { color: #555; text-decoration: none; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #e0ddd8;
  border-bottom: 2px solid #e0ddd8;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 3px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bbb; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e0ddd8;
  border-bottom-color: var(--gold);
}

.contact-form textarea { height: 140px; resize: vertical; }

.contact-form button {
  background: var(--navy);
  color: var(--white);
  padding: 15px 36px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}

.contact-form button:hover { background: var(--gold); color: var(--navy); }

#form-msg { font-family: 'Open Sans', sans-serif; font-size: 13px; color: var(--gold); margin-top: 4px; }

/* ─── PREMIÈRE SECTION (pages sans hero) ────── */
.first-section { padding-top: 235px; }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: #12202d; padding: 0 48px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo-img { height: 102px; }

.footer-copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  text-align: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-links { display: flex; align-items: center; gap: 20px; }

.footer-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.footer-linkedin:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,167,116,0.08);
}

.footer-linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

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

@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    padding: 0 20px;
    height: 72px;
    min-height: 72px;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow: hidden;
  }
  .navbar.menu-open {
    height: auto;
    background: rgba(15,25,36,0.98);
    overflow: visible;
  }
  .nav-left-wrap, .nav-right-wrap {
    display: none;
    width: 100%;
    order: 3;
  }
  .navbar.menu-open .nav-left-wrap,
  .navbar.menu-open .nav-right-wrap {
    display: flex;
  }
  .nav-left, .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0;
  }
  .nav-left a, .nav-right a {
    padding: 14px 4px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    color: var(--white) !important;
  }
  .nav-left a:last-child { border-bottom: none; }
  .nav-right-wrap { padding-bottom: 16px; }
  .nav-logo { order: 1; }
  .nav-burger { display: flex; order: 2; }

  /* Burger animé */
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-burger span { transition: transform 0.2s, opacity 0.2s; }

  /* ── Layout ── */
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .first-section { padding-top: 110px; }
  .contact-page { padding: 110px 0 60px; }

  /* ── Hero ── */
  .hero-content { padding: 50px 20px 36px; }
  .hero-title { font-size: clamp(26px, 7vw, 38px); }
  .hero-stats { padding: 0 20px; grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 20px; }
  .hero-stat:last-child { border-bottom: none; }

  /* ── Intro band ── */
  .intro-band { margin: 28px 20px; padding: 24px 20px; }

  /* ── Headings ── */
  .section-heading { font-size: clamp(22px, 5.5vw, 32px); }
  .contact-page-title { font-size: clamp(22px, 5.5vw, 32px); }

  /* ── Grilles ── */
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .apropos-grid { grid-template-columns: 1fr; }
  .expertises-grid { grid-template-columns: 1fr; }
  .transactions-grid { grid-template-columns: 1fr 1fr; }

  /* ── Équipe ── */
  .team-layout { grid-template-columns: 1fr; }
  .team-photo-img { aspect-ratio: 4/3; }

  /* ── Nous rejoindre ── */
  .join-box { grid-template-columns: 1fr; min-height: auto; }
  .join-content { order: 0; padding: 40px 28px; }
  .join-image { min-height: 260px; order: 1; }

  /* ── Contact ── */
  .contact-page-inner { padding: 0 20px; }
  .contact-page-body { grid-template-columns: 1fr; gap: 24px; }
  .contact-card-info { position: static; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ── */
  footer { padding: 0 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; padding: 36px 0; }
  .footer-right { align-items: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .transactions-grid { grid-template-columns: 1fr; }
  .join-box h3 { font-size: 24px; }
  .apropos-card { padding: 28px 20px; }
  .expertise-card { padding: 28px 20px; }
}
