:root {
  --pink: #c60086;
  --pink-dark: #9f006c;
  --ink: #101114;
  --soft-ink: #3a3d43;
  --line: #ece6ec;
  --paper: #ffffff;
  --wash: #fff7fb;
  --mint: #0a8c78;
  --shadow: 0 22px 55px rgba(16, 17, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(198, 0, 134, 0.12);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 148px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--pink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(20px, 5vw, 72px) 74px;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-recrutement.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.2) 76%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.06) 52%);
}

.hero-content {
  width: min(720px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy,
.intro-section p,
.poster-section p,
.apply-section p {
  max-width: 660px;
  color: var(--soft-ink);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 17, 20, 0.16);
}

.button.primary {
  color: #fff;
  border-color: var(--pink);
  background: var(--pink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
}

.button.dark {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section,
.status-section,
.poster-section,
.process-section,
.apply-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro-grid,
.poster-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.quick-facts {
  display: grid;
  gap: 14px;
}

.quick-facts div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--pink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.06);
}

.quick-facts span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft-ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts strong {
  font-size: 1.35rem;
}

.status-section {
  background: var(--wash);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.status-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(198, 0, 134, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.status-card.accent {
  color: #fff;
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

.status-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.accent .status-icon {
  color: var(--pink);
  background: #fff;
}

ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 30px;
  font-size: 1.08rem;
  font-weight: 800;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.accent li::before {
  background: #fff;
}

.poster-section {
  background: #fff;
}

.poster-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-section {
  background: #111;
  color: #fff;
}

.process-section .section-kicker {
  color: #ff58c1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.steps li::before {
  display: none;
}

.steps span {
  display: inline-block;
  margin-bottom: 38px;
  color: #ff58c1;
  font-size: 0.82rem;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 400;
}

.apply-section {
  background:
    linear-gradient(135deg, rgba(198, 0, 134, 0.08), rgba(10, 140, 120, 0.09)),
    #fff;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(198, 0, 134, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.apply-panel h2 {
  max-width: 520px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 112px;
}

.site-footer p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.94rem;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 12px 20px;
  }

  .brand img {
    width: 104px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 86vh;
    padding: 72px 20px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 56%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.25));
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
    line-height: 1;
  }

  .intro-grid,
  .poster-grid,
  .apply-panel,
  .status-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  nav a {
    padding: 8px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .quick-facts div,
  .status-card,
  .steps li,
  .apply-panel {
    padding: 22px;
  }
}
