/* ===== Accueil — styles spécifiques ===== */

.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 64px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line-strong);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 26px;
}
.status__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.62 0.15 150);
  box-shadow: 0 0 0 0 oklch(0.62 0.15 150 / 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.62 0.15 150 / 0.45); }
  70% { box-shadow: 0 0 0 7px oklch(0.62 0.15 150 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.62 0.15 150 / 0); }
}

.hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent-ink);
}
.hero__lead {
  font-size: clamp(16.5px, 1.7vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero__meta .eyebrow { margin-bottom: 14px; }

/* Hero card (fiche) */
.hero__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px 24px;
  box-shadow: var(--shadow-md);
}
.card__row {
  display: grid; grid-template-columns: 92px 1fr; gap: 14px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.card__row--last { border-bottom: none; }
.card__k {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.card__v { font-size: 15px; color: var(--ink); font-weight: 500; }
.card__v small { font-weight: 400; color: var(--muted); font-size: 13px; }
.card__link { color: var(--accent-ink); word-break: break-all; font-family: var(--font-mono); font-size: 13px; transition: color .15s; }
.card__link:hover { text-decoration: underline; }

/* Lead row (numéro + eyebrow) */
.lead-row { display: flex; align-items: center; gap: 16px; margin-bottom: 34px; }

/* Mini cards — ce que je fais */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.mini__idx { font-family: var(--font-mono); font-size: 12px; color: var(--accent-ink); letter-spacing: 0.04em; }
.mini h3 { font-size: 21px; margin: 14px 0 10px; }
.mini p { color: var(--ink-soft); font-size: 15.5px; }

/* Head flex (titre section + lien) */
.head-flex { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.head-flex .lead-row { margin-bottom: 0; }
.link-arrow {
  font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px; transition: color .15s;
}
.link-arrow:hover { color: var(--accent-ink); }
.link-arrow .arrow { transition: transform .2s ease; }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* Feature projects */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 38px; }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature__img { border: none; border-bottom: 1px solid var(--line); border-radius: 0; }
.feature__img--shot { overflow: hidden; background: var(--surface-2); }
.feature__img--shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .4s ease; }
.feature:hover .feature__img--shot img { transform: scale(1.03); }
.feature__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 14px; }
.feature__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feature__top h3 { font-size: 23px; }
.feature__body p { color: var(--ink-soft); font-size: 15.5px; }

/* CTA band */
.cta {
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center;
  margin-top: clamp(20px, 4vw, 48px);
}
.cta__title { color: var(--bg); font-size: clamp(28px, 3.6vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin-top: 14px; }
.cta__side p { color: oklch(0.82 0.01 255); margin-bottom: 22px; font-size: 16px; }
.btn--invert { background: var(--bg); color: var(--ink); }
.btn--invert:hover { background: var(--accent-soft); color: var(--accent-ink); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .cards3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; gap: 22px; }
}
