/* ===========================
   VARIABLES
   =========================== */
:root {
  --navy:        #1B5F6D;
  --navy-light:  #236878;
  --gold:        #29AABB;
  --gold-light:  #3BBCCC;
  --bg:          #F7F9FA;
  --bg-alt:      #EBF4F6;
  --text:        #2C2C2C;
  --muted:       #919599;
  --border:      #CFD8DA;

  --nav-h: 76px;
  --max-w: 1140px;

  --font-h: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', -apple-system, sans-serif;

  --shadow: 0 4px 32px rgba(27,95,109,0.10);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p {
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}
p:last-child { margin-bottom: 0; }

/* Pas de justification sur les textes courts ou décoratifs */
.hero-lead,
.hero-eyebrow,
.eyebrow,
.stat-label,
.stat-number,
.nav-link,
.btn,
.team-title,
.team-contact,
.contact-label,
.contact-value,
.footer-copy,
.footer-links a,
.competence-card-arrow,
.section-header > p,
blockquote {
  text-align: left;
  hyphens: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1rem; font-family: var(--font-b); font-weight: 600; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

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

.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .gold-line { margin: 1.25rem auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(27,95,109,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--navy); }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(41,170,187,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(41,170,187,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 3rem 0 4rem;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.75rem;
  font-weight: 300;
  line-height: 1.12;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--gold);
  padding: 2.25rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ===========================
   PRÉSENTATION (HOME)
   =========================== */
.presentation-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.presentation-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.975rem;
}

.presentation-text p + p { margin-top: 1rem; }

.presentation-aside {
  padding: 3rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
}

.presentation-aside::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 3rem;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.presentation-aside blockquote {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.value-item::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   COMPÉTENCES
   =========================== */

/* ===========================
   COMPÉTENCES HOME (grille 2×2)
   =========================== */
.competences-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.competence-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  text-decoration: none;
}

.competence-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.competence-card:hover { background: var(--navy); }
.competence-card:hover .competence-card-title { color: #fff; }
.competence-card:hover .competence-card-desc { color: rgba(255,255,255,0.45); }
.competence-card:hover .competence-num { color: rgba(255,255,255,0.08); }
.competence-card:hover .competence-card-arrow { color: var(--gold); }
.competence-card:hover::after { transform: scaleX(1); }

.competence-card .competence-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.competence-card-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.competence-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  transition: color var(--transition);
}

.competence-card-arrow {
  display: block;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: transparent;
  transition: color var(--transition);
}


/* ===========================
   ÉQUIPE
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-grid-4 { grid-template-columns: repeat(4, 1fr); }

.team-card {
  border-top: 2px solid var(--border);
  padding-top: 2rem;
  transition: border-color var(--transition);
}

.team-card:hover { border-top-color: var(--gold); }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--bg-alt);
  margin-bottom: 1.5rem;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-card:hover .team-photo { filter: grayscale(0%); }

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.team-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(27,95,109,0.7), transparent);
}

.team-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.team-contact {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.team-contact a { transition: color var(--transition); }
.team-contact a:hover { color: var(--gold); }

/* ===========================
   MÉTHODES
   =========================== */
.methodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.methode-item {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.methode-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.methode-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.methode-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===========================
   CTA CONTACT
   =========================== */
.cta-contact {
  background: var(--navy);
  padding: 6rem 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta-inner h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-inner p { color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 2rem; font-size: 0.95rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 1.5rem;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  padding-top: 0.15rem;
}

.contact-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.contact-value a { transition: color var(--transition); }
.contact-value a:hover { color: #fff; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0E3840;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   HERO VARIANTS
   =========================== */
.hero-sm  { min-height: 48vh; }
.hero-xs  { min-height: 32vh; }

.hero-inner-sm {
  padding: 2rem 0 3rem;
}

/* ===========================
   ACCORDÉON
   =========================== */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 2rem;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover .accordion-title { color: var(--gold); }

.accordion-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color var(--transition);
}

.accordion-item.open .accordion-num {
  color: var(--gold);
  opacity: 0.5;
}

.accordion-title {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  transition: color var(--transition);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  justify-self: end;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}
.accordion-icon::before { width: 12px; height: 1.5px; }
.accordion-icon::after  { width: 1.5px; height: 12px; }

.accordion-item.open .accordion-icon { background: var(--navy); border-color: var(--navy); }
.accordion-item.open .accordion-icon::before,
.accordion-item.open .accordion-icon::after { background: #fff; }
.accordion-item.open .accordion-icon::after { transform: rotate(90deg); opacity: 0; }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.accordion-item.open .accordion-body { grid-template-rows: 1fr; }

.accordion-body-inner { overflow: hidden; }

/* Variante compétences (2 colonnes) */
.accordion-content-2col {
  padding: 0 0 3rem 9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
}

/* Variante cabinet (1 colonne) */
.accordion-content-1col {
  padding: 0.5rem 0 2.5rem 7rem;
  max-width: 680px;
}

.accordion-content-2col p,
.accordion-content-1col p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin: 0;
  margin-bottom: 0;
  text-align: justify;
  hyphens: auto;
}

/* Variante compacte (cabinet) */
.accordion--compact .accordion-trigger { padding: 2rem 0; }
.accordion--compact .accordion-num { font-size: 1.8rem; }
.accordion--compact .accordion-title { font-size: 1.35rem; }
.accordion--compact .accordion-trigger {
  grid-template-columns: 56px 1fr 40px;
}
.accordion--compact .accordion-icon {
  width: 30px;
  height: 30px;
}
.accordion--compact .accordion-icon::before { width: 11px; }
.accordion--compact .accordion-icon::after  { height: 11px; }

/* ===========================
   PAGE INTERNE — CABINET
   =========================== */
.cabinet-body-text {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.975rem;
}

/* ===========================
   PAGE INTERNE — ÉQUIPE
   =========================== */
.avocat-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.avocat-block:last-child { border-bottom: none; }
.avocat-block--first { border-top: 1px solid var(--border); }

.avocat-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.avocat-info-col h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.25rem;
}

.avocat-bio p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.975rem;
  margin-bottom: 1rem;
}
.avocat-bio p:last-child { margin-bottom: 0; }

.avocat-email {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.5rem;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}
.avocat-email:hover { color: var(--gold); border-color: var(--gold); }

.assistants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.assistant-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.assistant-card--photo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.assistant-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.assistant-name {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}

.assistant-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ===========================
   PAGE INTERNE — COMPÉTENCES
   =========================== */
.competence-block {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.competence-block:last-child { border-bottom: none; }

/* ===========================
   PAGE INTERNE — CONTACT
   =========================== */
.contact-page-grid {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.contact-info-value {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

.contact-info-value a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-info-value a:hover { color: var(--gold); }

/* ===========================
   PAGE INTERNE — MENTIONS LÉGALES
   =========================== */
.ml-content {
  max-width: 780px;
  margin: 0 auto;
}

.ml-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.ml-section:last-child { border-bottom: none; }

.ml-section h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.ml-section p {
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.ml-section p:last-child { margin-bottom: 0; }

.ml-section ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.ml-section ul li {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.85;
  padding-left: 1rem;
  position: relative;
}
.ml-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.ml-block {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
}
.ml-block strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

/* ===========================
   UTILITAIRES
   =========================== */
.eyebrow-gold { color: var(--gold); }
.text-center  { text-align: center; }
.mb-0         { margin-bottom: 0; }
.mt-6         { margin-top: 1.5rem; }
.mt-8         { margin-top: 2rem; }
.mt-12        { margin-top: 3rem; }
.border-top-section { border-top: 1px solid var(--border); }

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 0.5rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .team-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .presentation-split { gap: 5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 0.875rem 2rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: block; padding: 1rem 2rem 0.5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 3rem) 0 4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.25); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.25); border-right: none; }
  .presentation-split { grid-template-columns: 1fr; gap: 3rem; }
  .competences-grid-home { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem; }
  .methodes-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4.5rem 0; }
  .avocat-block { grid-template-columns: 1fr; gap: 2rem; }
  .assistants-grid { grid-template-columns: 1fr; }
  .accordion-content-2col { grid-template-columns: 1fr; padding-left: 0; }
  .accordion-content-1col { padding-left: 0; }
}

@media (max-width: 480px) {
  .competences-grid-home { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .accordion-trigger { grid-template-columns: 48px 1fr 32px; gap: 1rem; }
  .accordion--compact .accordion-trigger { grid-template-columns: 40px 1fr 32px; }
}
