/* ─── DESIGN TOKENS ─── */
:root {
  --green: #176158;
  --green-mid: #1e7a6e;
  --green-light: #3d9688;
  --green-pale: #cce4e0;
  --green-bg: #e8f4f2;
  --beige: #fdebd3;
  --beige-mid: #f5e0c0;
  --yellow: #f7bd23;
  --yellow-dark: #d9a510;
  --white: #ffffff;
  --off-white: #f9f6f1;
  --cream: #fdf8f2;
  --text: #1a2422;
  --text-mid: #3d5250;
  --text-light: #6b8280;
  --border: rgba(23, 97, 88, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --nav-h: 60px;
  --max-w: 1100px;
  --r: 14px;
}

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

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(23, 97, 88, 0.08);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}
.nav__logo {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.18s;
}
.nav__links a:hover {
  color: var(--green);
}
.nav__btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 10px 22px;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.18s;
  white-space: nowrap;
}
.nav__btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 18px 28px 24px;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-size: 1rem;
  color: var(--text-mid);
}
.nav__mobile .btn-yellow {
  align-self: flex-start;
  color: var(--text);
}

/* ─── BUTTONS ─── */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--yellow);
  color: var(--text);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(247, 189, 35, 0.36);
  transition:
    background 0.22s,
    transform 0.18s,
    box-shadow 0.22s;
  white-space: nowrap;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 189, 35, 0.48);
}
.btn-yellow-lg {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
  background: var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.72;
}
.hero__cta {
  display: block;
}

/* ─── SHARED ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.section-title em {
  font-style: italic;
  color: var(--green);
}

/* ─── SECTION: QUESTIONNEMENTS ─── */
.questions {
  background: #5e8c7e;
  padding: 72px 0 88px;
  overflow: hidden;
}
.questions__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 28px;
}
.questions__intro {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 14px;
  line-height: 1.78;
}
.questions__intro2 {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 10px;
  line-height: 1.78;
}
.questions__tagline {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 60px;
  font-style: italic;
}

/* ── Cascade de cartes ── */
.questions__cascade {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1060px;
  margin-inline: auto;
  padding-bottom: 24px;
}

.q-col {
  position: relative;
  padding: 0 10px;
}
.q-col:nth-child(1) {
  padding-top: 0;
}
.q-col:nth-child(2) {
  padding-top: 80px;
}
.q-col:nth-child(3) {
  padding-top: 0;
}
.q-col:nth-child(4) {
  padding-top: 80px;
}

.q-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.62;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
  min-height: 100px;
}

/* ─── SECTION: RDV D'ORIENTATION ─── */
.rdv {
  background: var(--white);
  padding: 88px 0;
}
.rdv__head {
  text-align: center;
  margin-bottom: 10px;
}
.rdv__sub {
  text-align: center;
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.rdv__intro {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  padding: 18px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.rdv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}
.step {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}
.step:hover {
  box-shadow: 0 6px 24px rgba(23, 97, 88, 0.09);
  transform: translateY(-2px);
}
.step__top {
  display: block;
  margin-bottom: 10px;
}
.step__num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 0;
}

/* ─── SECTION: QUI SUIS-JE ─── */
.about {
  background: var(--beige);
  padding: 88px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
.about__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__img-wrap {
  max-width: 400px;
  height: 460px;
  margin: 0 auto;
  border-radius: 5% 20% 5% 20% / 5% 20% 5% 20%;
  overflow: hidden;
  background: var(--beige);
}
.about__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}
.about__right {
  padding-top: 8px;
}
.about__name {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about__job {
  display: none;
}
.about__subname {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1.4;
}
.about__bio {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 32px;
}
.about__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__item {
  display: block;
}
.about__item-icon {
  display: none;
}
.about__item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.about__item p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── SECTION: POUR NE PLUS ÊTRE PERDU ─── */
.perdu {
  background: var(--white);
  padding: 88px 0;
}
.perdu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.perdu__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 18px;
  margin-top: 12px;
}
.perdu__text {
  font-size: 0.9875rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 28px;
}
.perdu__modality {
  background: var(--beige);
  border-radius: var(--r);
  padding: 22px 24px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.perdu__modality-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.perdu__modality h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.perdu__modality p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.perdu__card {
  background: var(--green);
  border-radius: var(--r);
  padding: 36px 32px;
}
.perdu__card-title {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.3;
}
.perdu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perdu__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
}
.perdu__list-item svg {
  color: var(--green-pale);
  flex-shrink: 0;
}

/* ─── SECTION: CTA FINAL ─── */
.cta {
  background: var(--green);
  padding: 80px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(
    ellipse,
    rgba(62, 150, 136, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta__diamond {
  position: absolute;
  background: rgba(247, 189, 35, 0.35);
  transform: rotate(45deg);
}
.cta__diamond--1 {
  width: 16px;
  height: 16px;
  top: 28px;
  right: 80px;
}
.cta__diamond--2 {
  width: 10px;
  height: 10px;
  bottom: 36px;
  left: 72px;
  background: rgba(255, 255, 255, 0.2);
}
.cta__diamond--3 {
  width: 8px;
  height: 8px;
  top: 56px;
  left: 22%;
  background: rgba(247, 189, 35, 0.25);
}
.cta__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  position: relative;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  position: relative;
}
.cta__title em {
  font-style: italic;
  color: var(--yellow);
}
.cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.72;
  position: relative;
}
.cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background: var(--yellow);
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    background 0.22s,
    transform 0.18s,
    box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(247, 189, 35, 0.42);
}
.cta__btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(247, 189, 35, 0.52);
}
.cta__btn-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(26, 36, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FOOTER ─── */
.footer {
  background: #111c1a;
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.18s;
  text-decoration: none;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.footer__credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.18s;
}
.reveal-d3 {
  transition-delay: 0.28s;
}
.reveal-d4 {
  transition-delay: 0.38s;
}

/* ─── HERO ENTRY ANIMATION ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__eyebrow {
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero__title {
  animation: fadeUp 0.65s ease 0.22s both;
}
.hero__sub {
  animation: fadeUp 0.65s ease 0.36s both;
}
.hero__cta {
  animation: fadeUp 0.65s ease 0.5s both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .nav__btn {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

@media (max-width: 960px) {
  .questions__cascade {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .q-col {
    padding-top: 0 !important;
    padding: 8px;
  }
  .rdv__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .about__inner {
    gap: 36px;
  }
  .perdu__inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 58px;
  }
  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 72px;
  }

  .questions {
    padding: 60px 0 72px;
  }
  .questions__cascade {
    grid-template-columns: 1fr;
  }
  .q-col {
    padding-top: 0 !important;
    padding: 8px;
  }

  .rdv {
    padding: 64px 0;
  }
  .step__desc {
    padding-left: 0;
    margin-top: 8px;
  }

  .about {
    padding: 64px 0;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__img {
    max-width: 380px;
    margin-inline: auto;
  }

  .perdu {
    padding: 64px 0;
  }
  .perdu__inner {
    gap: 32px;
  }

  .cta {
    padding: 64px 0 72px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__eyebrow {
    font-size: 0.95rem;
    gap: 7px;
    letter-spacing: 0.07em;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after {
    width: 18px;
  }
  .step__top {
    gap: 10px;
  }
  .step__num {
    font-size: 1.5rem;
    min-width: 32px;
  }
}
