/* === Variables === */
:root {
  --dark:     #101415;
  --dark-2:   #161c20;
  --dark-3:   #1f2a30;
  --gold:     #D2B060;
  --gold-dark:#b8943e;
  --blue:     #93BED5;
  --white:    #FDFDFD;
  --gray-50:  #f7f6f2;
  --gray-100: #eceae3;
  --gray-400: #9a9890;
  --gray-600: #555550;
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --font-d:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --max-w:    1180px;
  --radius:   3px;
  --shadow:   0 2px 16px rgba(0,0,0,.12);
  --transition: .22s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.2; letter-spacing: .02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { max-width: 68ch; }

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 52px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(210,176,96,.15);
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo img { height: 40px; width: auto; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(253,253,253,.72);
  padding: 6px 14px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav a:hover, .nav a.active { color: var(--gold); background: rgba(210,176,96,.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* === Hero === */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: var(--dark-2);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/uploads/7/4/7/8/74786871/meerkats-2529496-1280_orig.jpg');
  background-size: cover; background-position: center;
  opacity: .18;
}
.hero-content { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 80px 24px; }
.hero-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(210,176,96,.4); border-radius: 2px;
  padding: 4px 12px; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 14ch; }
.hero p { color: rgba(253,253,253,.72); font-size: 1.1rem; margin-bottom: 36px; max-width: 52ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(253,253,253,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(253,253,253,.08); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-3); }

/* === Stats bar === */
.stats-bar { background: var(--dark); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(210,176,96,.2);
}
.stat-number { font-family: var(--font-d); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(253,253,253,.6); margin-top: 6px; letter-spacing: .03em; }

/* === Section titles === */
.section-label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.section-intro { color: var(--gray-600); font-size: 1.05rem; }

/* === Cards === */
.card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 36px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold); }
.card-icon { font-size: 2rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; color: var(--dark); }
.card p { color: var(--gray-600); font-size: .95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: .875rem; margin-top: 20px; letter-spacing: .03em; }
.card-link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

.card--dark { background: var(--dark); border-color: rgba(210,176,96,.2); }
.card--dark h3 { color: var(--white); }
.card--dark p { color: rgba(253,253,253,.6); }
.card--dark .card-link { color: var(--gold); }

/* === About section === */
.about-section { background: var(--gray-50); }
.about-text p + p { margin-top: 16px; }
.qualiopi-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--dark); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  margin-top: 28px;
}
.qualiopi-badge .badge-icon { font-size: 1.8rem; }
.qualiopi-badge p { color: rgba(253,253,253,.8); font-size: .875rem; max-width: none; margin: 0; }
.qualiopi-badge strong { color: var(--gold); font-size: 1rem; }

/* === Ratings === */
.ratings-section { background: var(--dark); }
.ratings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.rating-card {
  background: var(--dark-3); border: 1px solid rgba(210,176,96,.15);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.rating-score { font-family: var(--font-d); font-size: 2.6rem; font-weight: 700; color: var(--gold); }
.rating-max { font-size: .9rem; color: rgba(253,253,253,.4); }
.rating-label { font-size: .85rem; color: rgba(253,253,253,.65); margin-top: 8px; }

/* === News section === */
.news-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; margin-top: 16px;
}
.news-date { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.news-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.news-item p { font-size: .95rem; color: var(--gray-600); }

/* === CTA section === */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(210,176,96,.06) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(253,253,253,.65); margin: 0 auto 32px; font-size: 1.05rem; }

/* === Footer === */
.site-footer { background: var(--dark); border-top: 1px solid rgba(210,176,96,.12); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 36px; margin-bottom: 16px; }
.footer-about { color: rgba(253,253,253,.55); font-size: .9rem; line-height: 1.7; }
.footer-heading { color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { color: rgba(253,253,253,.55); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(253,253,253,.55); font-size: .875rem; margin: 0; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(253,253,253,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(253,253,253,.3);
}

/* === Page hero (inner pages) === */
.page-hero {
  background: var(--dark);
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(210,176,96,.12);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(253,253,253,.6); margin-top: 12px; font-size: 1.05rem; }
.breadcrumb { font-size: .82rem; color: rgba(253,253,253,.4); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* === Formations page === */
.domain-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.domain-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.domain-card-header {
  background: var(--dark); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
}
.domain-card-header .icon { font-size: 1.5rem; }
.domain-card-header h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.domain-card-body { padding: 20px 24px; }
.domain-card-body ul { list-style: none; }
.domain-card-body li {
  padding: 6px 0; font-size: .9rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.domain-card-body li:last-child { border: none; }
.domain-card-body li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.approach-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius);
}
.step-number {
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; min-width: 56px;
}
.step-content h3 { margin-bottom: 6px; }
.step-content p { font-size: .9rem; color: var(--gray-600); }

.pedagogy-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(210,176,96,.2);
  border-radius: var(--radius); padding: 40px;
  display: flex; gap: 32px; align-items: center;
}
.pedagogy-pct {
  font-family: var(--font-d); font-size: 4rem; font-weight: 700;
  color: var(--gold); line-height: 1; white-space: nowrap;
}
.pedagogy-text h3 { color: var(--white); margin-bottom: 6px; }
.pedagogy-text p { color: rgba(253,253,253,.65); font-size: .95rem; max-width: none; }

/* === Prestations page === */
.presta-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.presta-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.presta-card-top {
  background: var(--dark); padding: 32px;
  border-bottom: 3px solid var(--gold);
}
.presta-card-top .icon { font-size: 2.4rem; margin-bottom: 16px; }
.presta-card-top h3 { color: var(--white); }
.presta-card-body { padding: 28px 32px; }
.presta-card-body p { color: var(--gray-600); font-size: .95rem; margin-bottom: 16px; }
.tools-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tool-tag {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 2px; padding: 4px 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  color: var(--gray-600);
}

/* === Equipe page === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark); color: var(--gold);
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: .85rem; color: var(--gray-600); max-width: none; }
.team-card .btn { margin-top: 16px; padding: 8px 18px; font-size: .8rem; }

/* === References page === */
.logos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--gray-100);
}
.logo-cell {
  background: var(--white); padding: 36px 28px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.logo-cell:hover { background: var(--gray-50); }
.logo-cell img { max-height: 64px; max-width: 140px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: all var(--transition); }
.logo-cell:hover img { filter: none; opacity: 1; }

/* === Contact page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item .ci-icon { font-size: 1.3rem; color: var(--gold); margin-top: 2px; }
.contact-info-item h4 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: .9rem; color: var(--gray-600); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-100); border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210,176,96,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.legal-info {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 24px;
  font-size: .82rem; color: var(--gray-600); line-height: 1.8;
}
.legal-info strong { color: var(--dark); }

/* === Responsive === */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .ratings-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item::after { display: none; }
  .hero { min-height: 70vh; }
  .ratings-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pedagogy-banner { flex-direction: column; text-align: center; }
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 16px; border-top: 1px solid rgba(210,176,96,.15); gap: 4px; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .header-inner { position: relative; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ratings-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* === Pages CV === */
.cv-hero {
  background: var(--dark);
  padding: 64px 0 48px;
  border-bottom: 3px solid var(--gold);
}
.cv-hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cv-identity { display: flex; align-items: center; gap: 28px; }
.cv-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--dark-3); border: 3px solid var(--gold);
  color: var(--gold); font-family: var(--font-d);
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cv-hero h1 { color: var(--white); font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 6px; }
.cv-hero .cv-title { color: var(--gold); font-size: 1rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.cv-hero .cv-location { color: rgba(253,253,253,.5); font-size: .85rem; margin-top: 6px; }

.cv-body {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 0; align-items: start;
}
.cv-sidebar {
  background: var(--dark-2);
  padding: 40px 28px;
  min-height: 100%;
  border-right: 1px solid rgba(210,176,96,.1);
}
.cv-main { padding: 48px 40px; background: var(--white); }

.cv-block { margin-bottom: 36px; }
.cv-block-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(210,176,96,.2);
}
.cv-sidebar .cv-block-title { color: var(--gold); }
.cv-sidebar p { color: rgba(253,253,253,.7); font-size: .9rem; line-height: 1.7; max-width: none; }
.cv-sidebar .cv-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(253,253,253,.65); font-size: .85rem;
  margin-bottom: 8px;
}
.cv-sidebar .cv-contact-item a { color: var(--gold); word-break: break-all; }

.cv-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.cv-skill {
  background: rgba(210,176,96,.1); border: 1px solid rgba(210,176,96,.2);
  color: rgba(253,253,253,.8); border-radius: 2px;
  padding: 5px 12px; font-size: .8rem;
}

.cv-formation-item { margin-bottom: 14px; }
.cv-formation-item strong { color: var(--white); font-size: .88rem; display: block; }
.cv-formation-item span { color: rgba(253,253,253,.5); font-size: .8rem; }

/* Timeline expérience */
.cv-timeline { position: relative; }
.cv-timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 8px; bottom: 0;
  width: 2px; background: var(--gray-100);
}
.cv-exp { position: relative; padding-left: 40px; margin-bottom: 36px; }
.cv-exp::before {
  content: ''; position: absolute;
  left: 5px; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.cv-exp-header { margin-bottom: 6px; }
.cv-exp-company {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 700;
  color: var(--dark); letter-spacing: .02em;
}
.cv-exp-period {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: var(--gold); background: rgba(210,176,96,.1);
  border-radius: 2px; padding: 2px 8px; margin-left: 10px;
  letter-spacing: .04em;
}
.cv-exp-role { font-size: .85rem; color: var(--gray-600); margin-bottom: 8px; }
.cv-exp ul { padding-left: 0; }
.cv-exp li {
  font-size: .9rem; color: var(--gray-600);
  padding: 3px 0 3px 16px; position: relative;
}
.cv-exp li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

@media (max-width: 768px) {
  .cv-body { grid-template-columns: 1fr; }
  .cv-sidebar { border-right: none; border-bottom: 1px solid rgba(210,176,96,.1); }
  .cv-main { padding: 32px 24px; }
  .cv-hero-inner { flex-direction: column; align-items: flex-start; }
}

/* === Print / PDF CV — A4 une page === */
@media print {

  @page {
    size: A4 portrait;
    margin: 0;
  }

  * { box-sizing: border-box; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Masquer les éléments du site */
  .site-header,
  .site-footer,
  .breadcrumb,
  .cv-download-btn,
  .cv-sidebar .btn { display: none !important; }

  html, body {
    width: 210mm;
    height: 297mm;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 9pt;
    color: #111;
    background: white;
  }

  /* ── Hero ── */
  .cv-hero {
    background: #101415 !important;
    padding: 8mm 10mm 7mm !important;
    border-bottom: 2.5px solid #D2B060 !important;
  }

  .cv-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0 !important;
  }

  .cv-identity { display: flex; align-items: center; gap: 14px; }

  .cv-avatar {
    width: 52px; height: 52px;
    font-size: 1rem; border-width: 2px;
    background: #1f2a30 !important;
    border-color: #D2B060 !important;
    color: #D2B060 !important;
  }

  .cv-hero h1           { color: white !important;               font-size: 17pt !important; margin-bottom: 2px; }
  .cv-hero .cv-title    { color: #D2B060 !important;             font-size: 8.5pt !important; }
  .cv-hero .cv-location { color: rgba(255,255,255,.55) !important; font-size: 7.5pt !important; margin-top: 3px; }

  /* ── Layout 2 colonnes ── */
  .cv-body {
    display: grid !important;
    grid-template-columns: 58mm 1fr !important;
    width: 210mm;
    height: calc(297mm - 33mm);
    overflow: hidden;
  }

  /* ── Sidebar ── */
  .cv-sidebar {
    background: #f7f5f0 !important;
    padding: 6mm 5mm !important;
    border-right: none !important;
    overflow: hidden;
  }

  .cv-block { margin-bottom: 5mm !important; }

  .cv-block-title {
    font-size: 7pt !important;
    letter-spacing: .1em;
    color: #b8943e !important;
    margin-bottom: 4px !important;
    padding-bottom: 3px !important;
    border-bottom: 1px solid #d8c88a !important;
  }

  .cv-sidebar p { color: #333 !important; font-size: 7.5pt !important; line-height: 1.5 !important; max-width: none !important; }

  .cv-skills  { gap: 4px !important; }
  .cv-skill   { font-size: 7pt !important; padding: 2px 6px !important; background: #ede9d8 !important; border: none !important; color: #444 !important; border-radius: 2px; }

  .cv-formation-item          { margin-bottom: 5px !important; }
  .cv-formation-item strong   { color: #111 !important; font-size: 7.5pt !important; }
  .cv-formation-item span     { color: #666 !important; font-size: 7pt !important; }

  .cv-contact-item    { font-size: 7.5pt !important; margin-bottom: 4px !important; color: #444 !important; }
  .cv-contact-item a  { color: #b8943e !important; }

  /* ── Colonne principale ── */
  .cv-main {
    padding: 6mm 7mm !important;
    background: white;
    overflow: hidden;
  }

  .cv-block-title { font-size: 7pt !important; color: #b8943e !important; }

  /* Timeline */
  .cv-timeline::before { background: #ddd !important; left: 8px !important; top: 6px !important; }

  .cv-exp {
    padding-left: 26px !important;
    margin-bottom: 5mm !important;
    page-break-inside: avoid;
  }

  .cv-exp::before {
    width: 10px !important; height: 10px !important;
    left: 3px !important; top: 5px !important;
    background: #D2B060 !important;
    border-width: 2px !important;
    box-shadow: none !important;
  }

  .cv-exp-company  { font-size: 10pt !important;  color: #101415 !important; }
  .cv-exp-period   { font-size: 7pt !important;   padding: 1px 5px !important; color: #b8943e !important; background: #f5edcc !important; }
  .cv-exp-role     { font-size: 8pt !important;   margin-bottom: 3px !important; color: #555 !important; }
  .cv-exp li       { font-size: 8pt !important;   line-height: 1.5 !important; padding: 2px 0 2px 12px !important; color: #444 !important; }
  .cv-exp li::before { color: #b8943e !important; }

}
