/* ============================================================
   CHEF.CSS — Page de profil du Chef du CRRA
   Layout : portrait éditorial — photo plein cadre + biographie
   ============================================================ */

/* ── HERO PORTRAIT ────────────────────────────────────────── */
.chef-hero {
  background: var(--ink);
  min-height: 480px;
  display: grid;
  grid-template-columns: 420px 1fr;
  position: relative;
  overflow: hidden;
}

.chef-photo-col {
  position: relative;
  background: var(--green-950);
  overflow: hidden;
}

.chef-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .82;
}

.chef-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--s8);
  background: linear-gradient(
    to bottom,
    var(--green-950) 0%,
    transparent 40%,
    rgba(0,0,0,.6) 100%
  );
}

.chef-photo-monogram {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-800);
  border: 3px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

/* Ligne décorative verticale entre photo et texte */
.chef-photo-col::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,168,76,.25) 30%,
    rgba(201,168,76,.25) 70%,
    transparent
  );
}

.chef-info-col {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.chef-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s5);
}

.chef-label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold-500);
}

.chef-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: var(--s3);
}

.chef-title {
  font-size: var(--t-md);
  font-weight: 300;
  color: rgba(255,255,255,.52);
  margin-bottom: var(--s8);
  line-height: 1.6;
}

.chef-kpis {
  display: flex;
  gap: var(--s8);
  margin-bottom: var(--s8);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.chef-kpi {}

.chef-kpi-n {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  display: block;
}

.chef-kpi-l {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  display: block;
  margin-top: 4px;
}

.chef-contacts {
  display: flex;
  gap: var(--s6);
  flex-wrap: wrap;
}

.chef-contact {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.45);
}

.chef-contact svg { color: var(--gold-500); flex-shrink: 0 }
.chef-contact a { color: rgba(255,255,255,.45); transition: color var(--dur) var(--ease) }
.chef-contact a:hover { color: var(--gold-400) }

/* ── BIOGRAPHIE ───────────────────────────────────────────── */
.chef-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s16) var(--s8);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s12);
  align-items: start;
}

.chef-bio {}

.chef-bio-title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s5);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
}

.chef-bio-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
}

.chef-bio-text {
  font-size: var(--t-base);
  color: var(--ink);
  line-height: 1.85;
}
.chef-bio-text .domaines{
    background: var(--ink);
    border-radius: var(--r);
    padding: var(--s8) var(--s10);
    margin: var(--s8) 0;
    position: relative;
    overflow: hidden;
}
.chef-bio-text h3{
    font-family: var(--serif);
    font-size: var(--t-lg);
    color: var(--ink);
    margin-bottom: var(--s4);
}
.chef-bio-text .domaines h3{
    font-family: var(--serif);
    font-size: var(--t-lg);
    color: var(--parchment);
    margin-bottom: var(--s4);
}
.chef-bio-text  .domaines ul {
    list-style: none;
    margin: var(--s2) 0 var(--s5);
}
.chef-bio-text .domaines  ul li {
  display: flex;
  gap: var(--s3);
  margin-bottom: var(--s3);
  align-items: center;
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, .65);
}
.chef-bio-text .domaines  ul li::before{
  background-color: var(--gold-600);
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 15px;
}
.chef-bio-text p { margin-bottom: var(--s5) }

.chef-bio-text .parcours_chiffre .cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--slate-200);
  padding: 20px;
}
.chef-bio-text .parcours_chiffre .cards .card{
  height: 100%;
  border: 1px solid var(--slate-200);
  flex-basis:auto ;
  border-radius: var(--r);
  overflow: hidden;
}
.chef-bio-text .parcours_chiffre .cards .card .header{
  text-align: center;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--slate-200);
  padding: 20px;
  background-color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
}
.chef-bio-text .parcours_chiffre .cards .card .header .title{
  background-color: var(--gold-500);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chef-bio-text .parcours_chiffre .cards .card .header .title h2{
  color: var(--parchment);
}
.chef-bio-text .parcours_chiffre .cards .card .body{
  padding: 10px;
}
.chef-bio-text .parcours_chiffre .cards .card .body .slug{
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.chef-bio-text .parcours_chiffre .cards .card .body .slug::after{
  content: '';
  width: 10px;
  height: 2px;
  background-color: black;
  display: block;
  margin-left: 5px;
}
.chef-bio-text .parcours_chiffre .cards .card .body .slug::before{
  content: '';
  width: 10px;
  height: 2px;
  background-color: black;
  display: block;
  margin-right: 5px;
}
.chef-bio-text .parcours_chiffre .cards .card .body .text{
}
.chef-bio-text p:last-child { margin-bottom: 0 }

/* Citation mise en avant */
.chef-quote {
  border-left: 4px solid var(--gold-500);
  padding: var(--s5) var(--s6);
  margin: var(--s8) 0;
  background: var(--gold-50);
  border-radius: 0 var(--r) var(--r) 0;
}

.chef-quote p {
  font-family: var(--serif);
  font-size: var(--t-lg);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar de la bio */
.chef-sidebar {}

.chef-sidebar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: var(--s5);
}

.chef-sidebar-head {
  background: var(--ink);
  padding: var(--s3) var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.chef-sidebar-head::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--gold-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.chef-sidebar-head h3 {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.chef-sidebar-body {
  padding: var(--s5);
}

/* Spécialités */
.chef-specs {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.chef-spec-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: var(--slate-700);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--slate-100);
}

.chef-spec-item:last-child { border-bottom: none }

.chef-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Publications récentes dans la sidebar */
.chef-pub-item {
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--slate-100);
}

.chef-pub-item:last-child { border-bottom: none }

.chef-pub-journal {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.chef-pub-title {
  font-family: var(--serif);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .chef-hero  { grid-template-columns: 1fr }
  .chef-photo-col { height: 320px }
  .chef-info-col { padding: var(--s8) var(--s6) }
  .chef-body  { grid-template-columns: 1fr; gap: var(--s8) }
}

@media (max-width: 768px) {
  .chef-name  { font-size: 28px }
  .chef-kpis  { gap: var(--s5) }
}
