/*
================================================
LA PLACE — PAGE CONSULTATION REMOTE
Visual language : The Rebel Optician
Hérite de laplace-design-system.css.
N'ajoute QUE ce que le design system ne couvre pas.
Polices, couleurs, .container, .section, .btn,
.section-eyebrow, .reveal, .yellow-line : design system.
Accent jaune : une seule ligne par composition (le hero).
================================================
*/

/* =============================================
   HERO
   ============================================= */
.remote-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* compense la nav fixed */
}

.remote-hero__inner {
  max-width: 900px;
}

.remote-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  overflow-wrap: break-word;
  hyphens: auto;
}

.remote-hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-light);
  line-height: 1.65;
  color: var(--gray-4);
  max-width: 560px;
}

/* l'unique ligne jaune de la page */
.remote-hero__line {
  width: 100%;
  max-width: 200px;
  margin-top: var(--space-12);
}

/* =============================================
   PROSE — paragraphes longs
   ============================================= */
.remote-prose p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-light);
  line-height: 1.8;
  color: var(--gray-3);
  margin-bottom: var(--space-5);
  max-width: 62ch;
}
.remote-prose p:last-child { margin-bottom: 0; }
.remote-prose strong {
  font-weight: var(--font-medium);
  color: var(--black);
}
/* version sur fond noir (encart sans risque) */
.remote-prose--invert p { color: var(--gray-5); max-width: 58ch; }
.remote-prose--invert strong { color: var(--white); }

/* =============================================
   PROCESSUS — étapes numérotées
   ============================================= */
.remote-etapes {
  list-style: none;
  max-width: 760px;
}
.remote-etape {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-8);
  align-items: baseline;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--gray-2);
}
.remote-etape:first-child { border-top: 1px solid var(--gray-2); }

.remote-etape__num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 0.9;
  color: var(--yellow);
}

.remote-etape__titre {
  font-family: var(--font-condensed);
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.remote-etape__texte {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-light);
  line-height: 1.7;
  color: var(--gray-4);
  max-width: 56ch;
}

/* =============================================
   POUR QUI / PAS POUR QUI
   ============================================= */
.remote-deux-colonnes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
}

.remote-liste { list-style: none; }
.remote-liste li {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-light);
  line-height: 1.55;
  color: var(--black);
  padding: var(--space-5) 0 var(--space-5) 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-6);
}
.remote-liste li:first-child { border-top: 1px solid var(--gray-6); }

.remote-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--space-5) + 0.78em);
  width: 16px;
  height: 1px;
  background: var(--black);
}
.remote-liste--non li { color: var(--gray-3); }
.remote-liste--non li::before { background: var(--gray-4); }

/* =============================================
   SANS RISQUE — encart noir dans section blanche
   (même pattern que .manifeste-quote)
   ============================================= */
.remote-risque__block {
  background: var(--black);
  padding: 56px 48px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.remote-risque__block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--yellow);
}
.remote-risque__titre {
  font-family: var(--font-condensed);
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

/* =============================================
   CTA FINAL
   ============================================= */
.remote-cta__titre {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--space-12);
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}
.remote-cta__note {
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--gray-4);
  max-width: 46ch;
  margin: var(--space-8) auto 0;
}

/* =============================================
   SIGNATURE
   ============================================= */
.remote-signature p {
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .remote-hero { min-height: 80vh; }

  .remote-deux-colonnes {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .remote-etape {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-6) 0;
  }
  .remote-etape__num { font-size: var(--text-3xl); }

  .remote-risque__block { padding: 40px 28px; }

  .remote-hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .remote-cta__titre { font-size: clamp(2.5rem, 11vw, 4rem); }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}
