/* ===== CHIC · Styles pour nouvelles pages ===== */

/* Page hero générique */
.page-hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(24px, 3vw, 40px);
  background: var(--chic-50);
}
.page-hero .h1 {
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
}
.page-hero.checkup-hero {
  background: linear-gradient(180deg, var(--chic-50) 0%, var(--paper) 100%);
}

/* Listes riches & info */
.rich-list {
  list-style: none;
  padding: 0; margin: 0;
}
.rich-list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--chic-100);
  color: var(--chic-700);
  font-size: 15px;
  line-height: 1.65;
}
.rich-list li:last-child { border-bottom: 0; }
.rich-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 1px;
  background: var(--chic-300);
}

.info-icon-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 18px;
}
.info-icon-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--chic-700);
  line-height: 1.6;
}
.info-icon-list .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--paper); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--chic-100);
}

/* Prose / two-column */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .prose-grid { grid-template-columns: 1fr; gap: 24px; } }
.prose-side {
  position: sticky; top: calc(var(--header-h) + 24px);
}
.prose-body p { margin: 0 0 18px; color: var(--chic-700); }
.prose-body p:first-child { color: var(--ink); }


/* ===== Mission / Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 1080px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.value-card .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent-strong); letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.value-card h3 { margin: 0 0 10px; color: var(--chic-800); }
.value-card p { margin: 0; color: var(--chic-400); font-size: 14px; line-height: 1.6; }

.commit-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(40px, 5vw, 64px);
  background: var(--chic-800);
  color: #fff;
  border-radius: var(--r-xl);
}
@media (max-width: 980px) { .commit-band { grid-template-columns: 1fr; gap: 32px; } }
.commit-band .eyebrow { color: var(--accent); }
.commit-band .h2 { color: #fff; }
.commit-band .lead { color: rgba(255,255,255,0.7); }
.commit-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.commit-stats .cell {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.commit-stats .cell:last-child { border-right: 0; }
.commit-stats .stat-value { color: #fff; font-size: 38px; }
.commit-stats .stat-label { color: rgba(255,255,255,0.55); font-size: 11.5px; }

/* ===== Centre — pôles detailed ===== */
.poles-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 980px) { .poles-detailed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .poles-detailed { grid-template-columns: 1fr; } }
.pole-detail {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pole-detail:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.pole-detail .hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.pole-detail .ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--chic-50); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.pole-detail .bd {
  font-family: var(--mono); font-size: 11px;
  color: var(--chic-400); letter-spacing: 0.04em;
  padding: 4px 10px; background: var(--chic-50);
  border-radius: 999px;
}
.pole-detail h3 { margin: 0; color: var(--chic-800); line-height: 1.3; }

/* Ambulatoire */
.ambu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 980px) { .ambu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ambu-grid { grid-template-columns: 1fr; } }
.ambu-card {
  padding: 28px 24px;
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  background: var(--paper);
}
.ambu-card.highlight {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.ambu-card .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent-strong); letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.ambu-card h3 { margin: 0 0 8px; }
.ambu-card p { margin: 0; color: var(--chic-400); font-size: 13.5px; line-height: 1.6; }
.ambu-card.highlight p { color: var(--chic-800); }

/* Plateau technique - dark grid */
.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .dark-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dark-grid { grid-template-columns: 1fr; } }
.dark-grid .cell {
  background: var(--chic-800);
  padding: 32px 28px;
}
.dark-grid .cell.wide { grid-column: span 3; }
@media (max-width: 980px) { .dark-grid .cell.wide { grid-column: span 2; } }
@media (max-width: 600px) { .dark-grid .cell.wide { grid-column: span 1; } }
.dark-grid .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dark-grid h3 { margin: 0 0 10px; color: #fff; font-size: 18px; font-weight: 600; }
.dark-grid p { margin: 0; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; }
.dark-grid ul {
  margin: 14px 0 0; padding: 0; list-style: none;
}
.dark-grid li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
}
.dark-grid li::before {
  content: "";
  position: absolute; left: 0; top: 19px;
  width: 10px; height: 1px;
  background: var(--accent);
}

/* Logistique */
.logi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 980px) { .logi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .logi-grid { grid-template-columns: 1fr; } }
.logi-card {
  padding: 28px 24px;
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  background: var(--paper);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logi-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.logi-card .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--chic-50); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.logi-card h4 { margin: 0 0 8px; color: var(--chic-800); font-size: 16px; font-weight: 600; }
.logi-card p { margin: 0; color: var(--chic-400); font-size: 13.5px; line-height: 1.55; }

/* ===== Équipes & gouvernance ===== */
.board-list {
  margin-top: 28px;
  border-top: 1px solid var(--chic-100);
}
.board-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--chic-100);
}
.board-row .idx {
  font-family: var(--mono); font-size: 12px;
  color: var(--chic-300); letter-spacing: 0.06em;
}
.board-row .name { font-size: 17px; font-weight: 500; color: var(--chic-800); }
.board-row .role { font-size: 13px; color: var(--chic-400); margin-top: 4px; }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 980px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .leadership-grid { grid-template-columns: 1fr; } }
.leader-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.leader-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.leader-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--chic-800); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 500; font-size: 16px;
  letter-spacing: 0.02em;
}
.leader-card .area {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent-strong); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.leader-card .name { font-size: 16px; font-weight: 500; color: var(--chic-800); line-height: 1.3; }
.leader-card .role { font-size: 12.5px; color: var(--chic-400); margin-top: 4px; line-height: 1.4; }


/* ===== Parcours de soins (journey) ===== */
.journey {
  margin-top: 32px;
  display: grid;
  gap: 0;
}
.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: stretch;
}
.journey-step .rail {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.journey-step .rail .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent-strong);
  margin-top: 32px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.journey-step .rail .line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--chic-100) 100%);
  margin-top: 6px;
  margin-bottom: -6px;
  min-height: 40px;
}
.journey-step .card {
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.journey-step .card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.journey-step .hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.journey-step .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent-strong); letter-spacing: 0.06em;
}
.journey-step .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--chic-50); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.journey-step h3 { margin: 0 0 10px; color: var(--chic-800); }
.journey-step p { margin: 0; color: var(--chic-400); line-height: 1.65; font-size: 14.5px; }

/* ===== Horaires & accès ===== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 980px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card {
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
}
.hours-time {
  display: flex; flex-direction: column;
  padding: 24px 0;
}
.hours-time .big {
  font-size: 44px; font-weight: 200;
  color: var(--chic-800);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hours-time .sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--chic-400);
}
.hours-divider {
  height: 1px;
  background: var(--chic-100);
  margin: 24px 0;
}
.contact-rows .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  font-size: 14px;
}
.contact-rows .lbl {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--chic-400);
}
.contact-rows .val {
  font-family: var(--mono); font-size: 13px;
  color: var(--chic-800);
  font-weight: 500;
}

/* Map placeholder */
.map-card {
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.map-placeholder {
  position: relative;
  flex: 1;
  min-height: 380px;
  background: linear-gradient(135deg, var(--chic-50) 0%, var(--chic-100) 100%);
  overflow: hidden;
}
.map-placeholder .hatch {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(20,50,60,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20,50,60,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder .pin {
  position: absolute;
  left: 52%; top: 48%;
  transform: translate(-50%, -100%);
}
.map-placeholder .pin-dot {
  display: block;
  width: 18px; height: 18px;
  background: var(--accent-strong);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(217,148,87,0.5);
  position: relative;
}
.map-placeholder .pin-dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  transform: translate(-50%, -2px) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--accent-strong);
}
.map-placeholder .map-label {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  max-width: 280px;
}
.map-placeholder .map-label small {
  display: block;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--chic-400);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.map-placeholder .map-label span {
  font-size: 14px; font-weight: 500; color: var(--chic-800);
  line-height: 1.3;
}
.map-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid var(--chic-100);
  font-size: 13px; color: var(--chic-400);
}

/* Access alert */
.alert-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--soon-bg);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--soon);
}
.alert-card .alert-ic {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(176,122,26,0.15); color: var(--soon);
  display: inline-flex; align-items: center; justify-content: center;
}
.alert-card p { margin: 0; color: var(--chic-800); font-size: 15px; line-height: 1.65; }

.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
}
.info-card .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--chic-50); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-card h4 { margin: 0 0 8px; color: var(--chic-800); }
.info-card p { margin: 0; color: var(--chic-400); font-size: 14px; line-height: 1.6; }

/* ===== Admission ===== */
.admission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 880px) { .admission-grid { grid-template-columns: 1fr; } }
.admission-card {
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  padding: 40px 36px;
}
.admission-card .hd {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.admission-card .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent-strong); letter-spacing: 0.06em;
}
.admission-card .tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--chic-50);
  color: var(--chic-800);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admission-card h3 { margin: 0 0 22px; color: var(--chic-800); }
.admission-card .rich-list li { color: var(--chic-700); }

/* Quick info */
.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .quick-info { grid-template-columns: 1fr; gap: 18px; } }
.qi-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
}
.qi-block .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--paper); color: var(--chic-800);
  border: 1px solid var(--chic-100);
  display: inline-flex; align-items: center; justify-content: center;
}
.qi-block .lbl {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--chic-400); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.qi-block .val {
  font-size: 15px; font-weight: 500; color: var(--chic-800);
  line-height: 1.3;
}
.qi-block small {
  display: block;
  font-size: 12px; color: var(--chic-400); margin-top: 2px;
}


/* ===== Check-up — promise grid ===== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 980px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-card {
  position: relative;
  padding: 24px 22px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.promise-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-strong);
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.03em;
}
.promise-card p { margin: 4px 0 0; color: var(--chic-700); font-size: 14px; line-height: 1.55; }

/* Check-up explorer */
.checkup-explorer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 980px) { .checkup-explorer { grid-template-columns: 1fr; } }

.ck-tabs {
  display: flex; flex-direction: column;
  background: var(--chic-50);
  border-radius: var(--r-lg);
  padding: 12px;
  align-self: start;
}
@media (max-width: 980px) {
  .ck-tabs { flex-direction: row; overflow-x: auto; padding: 8px; }
}
.ck-tab {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 0; background: transparent;
  border-radius: var(--r);
  text-align: left;
  font-size: 14px; font-weight: 500;
  color: #14323c;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.ck-tab .label { color: #14323c; }
.ck-tab .chev { color: var(--chic-300); opacity: 0; transition: opacity .15s ease, transform .15s ease; }
.ck-tab:hover { background: rgba(20,50,60,0.06); color: #14323c; }
.ck-tab:hover .label { color: #14323c; }
.ck-tab.active {
  background: var(--chic-800); color: #fff;
}
.ck-tab.active .label { color: #fff; }
.ck-tab.active .chev { opacity: 1; color: var(--accent); transform: translateX(2px); }

.ck-panel {
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
}
.ck-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--chic-100);
  margin-bottom: 28px;
}
.ck-head .eyebrow { color: var(--accent-strong); }
.ck-head .h2 { font-size: 32px; line-height: 1.15; max-width: 18ch; }
.ck-duration {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--chic-50);
  color: var(--chic-800);
  font-size: 12.5px; font-weight: 500;
  flex-shrink: 0;
}
.ck-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .ck-body { grid-template-columns: 1fr; } }
.ck-lbl {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent-strong); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ck-body p { margin: 0; color: var(--chic-700); font-size: 14.5px; line-height: 1.65; }
.ck-exams {
  padding: 24px;
  background: var(--chic-50);
  border-radius: var(--r);
  margin-bottom: 28px;
}
.ck-exams ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
@media (max-width: 700px) { .ck-exams ul { grid-template-columns: 1fr; } }
.ck-exams li {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: flex-start;
  font-size: 13.5px; color: var(--chic-700); line-height: 1.5;
  padding: 6px 0;
}
.ck-exams li svg { color: var(--open); margin-top: 4px; }
.ck-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Experience patient cards (dark bg) */
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.exp-card .hd {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.exp-card .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(240,180,120,0.15); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.exp-card .step {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exp-card h3 { margin: 0 0 16px; color: #fff; font-size: 19px; font-weight: 600; line-height: 1.3; }
.exp-card ul {
  list-style: none; padding: 0; margin: 0;
}
.exp-card li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.exp-card li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 10px; height: 1px;
  background: var(--accent);
}

/* FAQ */
.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--chic-100);
}
.faq-item {
  border-bottom: 1px solid var(--chic-100);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: transparent; border: 0;
  text-align: left;
  font-size: 16px; font-weight: 500;
  color: var(--chic-800);
  cursor: pointer;
}
.faq-q:hover { color: var(--chic-700); }
.faq-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--chic-50); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-ic { transform: rotate(180deg); background: var(--chic-800); color: #fff; }
.faq-a {
  padding: 0 0 22px;
  color: var(--chic-700);
  font-size: 14.5px; line-height: 1.7;
  max-width: 60ch;
}

/* Contact band */
.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
}
@media (max-width: 880px) { .contact-band { grid-template-columns: 1fr; gap: 24px; } }
.contact-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 18px;
  background: var(--chic-50);
  border-radius: var(--r);
  text-decoration: none;
  transition: background .15s ease;
}
.contact-item:hover { background: var(--chic-100); }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--paper); color: var(--chic-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-item small {
  display: block;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--chic-400); letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item b { color: var(--chic-800); font-size: 14.5px; font-weight: 500; }


/* ===== Opportunités — recrutements ===== */
.offers-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .offers-toolbar { flex-direction: column; align-items: stretch; } }
.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.fchip {
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--chic-700);
  cursor: pointer;
  transition: all .15s ease;
}
.fchip:hover { border-color: var(--chic-300); }
.fchip.active {
  background: var(--chic-800); border-color: var(--chic-800);
  color: #fff;
}

.offers-list {
  display: flex; flex-direction: column; gap: 12px;
}
.offer-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.offer-row:hover { border-color: var(--chic-300); box-shadow: var(--shadow-2); }
.offer-row .meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--chic-400); letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.offer-row .meta .ref { color: var(--accent-strong); }
.offer-row .meta .dot { opacity: 0.5; }
.offer-row h3 {
  margin: 0 0 14px;
  color: var(--chic-800);
  font-size: 18px; font-weight: 600;
  max-width: 56ch;
}
.offer-row .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.offer-row .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--chic-50);
  color: var(--chic-700);
  font-size: 12px; font-weight: 500;
}
.offer-row .tag-contract { background: var(--chic-800); color: #fff; }
.offer-row .tag-deadline { background: var(--accent-soft); color: var(--accent-strong); }
.offer-row .apply {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r);
  background: var(--chic-50);
  color: var(--chic-800);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: all .15s ease;
}
.offer-row .apply:hover { background: var(--chic-800); color: #fff; }
@media (max-width: 700px) {
  .offer-row { grid-template-columns: 1fr; }
  .offer-row .apply { justify-self: start; }
}

/* Why join */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
}
.why-card h4 { margin: 0 0 10px; color: var(--chic-800); font-size: 16px; }
.why-card p { margin: 0; color: var(--chic-400); font-size: 13.5px; line-height: 1.6; }

/* Tenders table */
.tenders-table {
  margin-top: 24px;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
.tenders-table .th, .tenders-table .tr {
  display: grid;
  grid-template-columns: 130px 2.2fr 1.2fr 130px 130px 130px;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
}
.tenders-table .th {
  background: var(--chic-50);
  font-family: var(--mono); font-size: 10.5px;
  color: var(--chic-400); letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--chic-100);
}
.tenders-table .tr {
  border-bottom: 1px solid var(--chic-100);
  font-size: 13.5px;
  transition: background .15s ease;
}
.tenders-table .tr:last-child { border-bottom: 0; }
.tenders-table .tr:hover { background: var(--chic-50); }
.tenders-table .ref {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent-strong); letter-spacing: 0.04em;
}
.tenders-table .title {
  color: var(--chic-800); font-weight: 500;
}
.tenders-table .type { color: var(--chic-400); font-size: 12.5px; }
.tenders-table .deadline {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--chic-700); font-size: 12.5px;
}
.tenders-table .status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
}
.tenders-table .status .dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.tenders-table .status.live { color: var(--open); }
.tenders-table .status.live .dot { background: var(--open); box-shadow: 0 0 0 3px rgba(47,125,74,0.15); }
.tenders-table .status.closed { color: var(--chic-400); }
.tenders-table .status.closed .dot { background: var(--chic-300); }
.tenders-table .dl {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  background: var(--chic-50);
  color: var(--chic-800);
  font-size: 12px; font-weight: 500;
  text-decoration: none;
  justify-self: end;
  transition: all .15s ease;
}
.tenders-table .dl:hover { background: var(--chic-800); color: #fff; }

@media (max-width: 1180px) {
  .tenders-table .th { display: none; }
  .tenders-table .tr {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 24px;
  }
  .tenders-table .dl { justify-self: start; }
}

/* ===== RDV enhancements ===== */
.rdv-alert {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  background: var(--soon-bg);
  border-radius: var(--r);
  border-left: 4px solid var(--soon);
}
.rdv-alert .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(176,122,26,0.15); color: var(--soon);
  display: inline-flex; align-items: center; justify-content: center;
}
.rdv-alert p { margin: 0; color: var(--chic-800); font-size: 14px; line-height: 1.55; }

.rdv-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .rdv-info-grid { grid-template-columns: 1fr; } }
.rdv-info-card {
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  padding: 36px;
}
.rdv-info-card.highlight {
  background: var(--chic-800);
  color: #fff;
  border-color: var(--chic-800);
}
.rdv-info-card.highlight .eyebrow { color: var(--accent); }
.rdv-info-card.highlight h3 { color: #fff; }
.rdv-info-card.highlight .info-icon-list li { color: rgba(255,255,255,0.85); }
.rdv-info-card.highlight .info-icon-list .ic {
  background: rgba(255,255,255,0.06); color: var(--accent); border-color: rgba(255,255,255,0.08);
}
.rdv-info-card.highlight b { color: #fff; }
.rdv-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--chic-100);
  font-size: 12.5px;
  color: var(--chic-400);
  line-height: 1.6;
}

.rdv-availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) { .rdv-availability { grid-template-columns: 1fr; } }
.ra-block {
  padding: 32px;
  background: var(--chic-50);
  border-radius: var(--r-lg);
}
.chip-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip-cloud .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  border-radius: 999px;
  font-size: 13px;
  color: var(--chic-800);
}
.chip-cloud .chip svg { color: var(--open); }

/* Vision grid for prose-side fallback */
.vision-grid + .commit-band { margin-top: 0; }

/* Access band wrap */
.access-band { margin-top: 12px; }


/* ===== Photo strip — Centre page ===== */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 0;
}
@media (max-width: 980px) { .photo-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .photo-strip { grid-template-columns: 1fr; } }
.psg-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.psg-item.span-2 { aspect-ratio: 4/3; grid-row: auto; grid-column: auto; }
.psg-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.psg-item:hover img { transform: scale(1.04); }

/* ===== Équipement gallery ===== */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 980px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .equip-grid { grid-template-columns: 1fr; } }
.equip-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--chic-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.equip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.equip-card .ph {
  aspect-ratio: 4/3;
  background: var(--chic-100);
  overflow: hidden;
}
.equip-card .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.equip-card:hover .ph img { transform: scale(1.05); }
.equip-card .caption { padding: 22px 24px 24px; }
.equip-card .tag {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent-strong); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.equip-card h4 { margin: 0 0 8px; color: var(--chic-800); font-size: 17px; font-weight: 600; line-height: 1.3; }
.equip-card p { margin: 0; color: var(--chic-400); font-size: 13.5px; line-height: 1.55; }

/* ===== News cards with real images ===== */
.news-card .news-img {
  overflow: hidden;
  background: var(--chic-100);
}
.news-card .news-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }

/* ===== Map placeholder using real photo ===== */
.map-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.map-placeholder { background: var(--chic-100); }
