/* about.css — standalone styling for EN_about.html + FR_about.html
   Depends on global2.css for header/footer + base layout.
*/

:root{
  --about-max: 980px;
  --about-text-max: 780px;
  --about-gap: 18px;
  --about-gap-lg: 28px;

  /* fallback colors (global2 likely defines these already) */
  --about-ink: #1f2428;
  --about-muted: rgba(31,36,40,.72);
  --about-line: rgba(31,36,40,.12);
  --about-card: rgba(255,255,255,.35);
}

/* Scope everything to this page only */
.about-page #section-one.section-one{
  padding-top: 26px;
  padding-bottom: 30px;
}

.about-page .about-wrap{
  max-width: var(--about-max);
  margin: 0 auto;
  padding: 0 14px;
}

/* Intro block */
.about-page .about-intro{
  max-width: var(--about-text-max);
  margin-top: 8px;
  margin-bottom: var(--about-gap-lg);
}

.about-page .about-kicker{
  margin: 0 0 10px 0;
  font-family: "Arsenal SC", serif;
  font-size: 22px;
  font-style: normal;
  letter-spacing: .3px;
  color: var(--about-ink);
}

.about-page .about-lede{
  margin: 0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--about-muted);
}

/* Path-first section */
.about-page .about-paths{
  margin: 0 0 var(--about-gap-lg) 0;
}

.about-page .about-paths-title{
  margin: 0 0 12px 0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--about-muted);
}

.about-page .path-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px){
  .about-page .path-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* “Card” blocks (subtle, not loud) */
.about-page .path-card{
  background: var(--about-card);
  border: 1px solid var(--about-line);
  border-radius: 14px;
  padding: 14px 14px 12px 14px;
  backdrop-filter: blur(6px);
}

.about-page .path-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.about-page .path-name{
  margin: 0;
  font-family: "Arsenal SC", serif;
  font-size: 18px;
  font-style: normal;
  color: var(--about-ink);
}

.about-page .path-time{
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 12px;
  color: var(--about-muted);
  letter-spacing: .02em;
}

.about-page .path-steps{
  margin: 0;
  padding-left: 18px;
  color: var(--about-ink);
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.about-page .path-steps li{
  margin: 6px 0;
}

/* Content blocks below paths */
.about-page .about-block{
  max-width: var(--about-text-max);
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--about-line);
}

.about-page .about-h2{
  margin: 0 0 10px 0;
  font-family: "Arsenal SC", serif;
  font-size: 20px;
  font-style: normal;
  color: var(--about-ink);
}

.about-page .about-list{
  margin: 0;
  padding-left: 18px;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--about-ink);
}

.about-page .about-list li{
  margin: 6px 0;
}

.about-page .about-note{
  margin: 10px 0 0 0;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--about-muted);
}

/* Small helper for arrow rows */
.about-page .about-list .about-strong{
  font-weight: 600;
}

/* Make numbered “is / is not” appear as two columns on wide screens */
.about-page .two-col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px){
  .about-page .two-col{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .about-page .about-block{
    max-width: 100%;
  }
  .about-page .about-intro{
    max-width: 100%;
  }
}
/* Milestone tracker (How the site has evolved) */
.about-page .about-evolve{
  margin-top: 18px;
}

.about-page .milestone-track{
  position: relative;
  margin-top: 14px;
  padding: 14px 10px 10px 10px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255,255,255,.28);
}

/* MOBILE-FIRST: vertical spine */
.about-page .ms-line{
  position: absolute;
  left: 25px;        /* aligns to the center of the dot column (10px track pad + 6px item pad + 9px) */
  top: 14px;
  bottom: 14px;      /* full height (not segmented) */
  width: 1px;
  background: var(--about-line);
}

/* Optional: ensure dots are centered in the 18px column (helps both mobile + desktop) */
.about-page .ms-dot{
  margin-left: 4px;  /* (18 - 10) / 2 */
}

.about-page .ms{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 6px;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px){
  .about-page .milestone-track{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 16px 14px 12px 14px;
  }

  .about-page .ms{
    grid-template-columns: 18px 1fr;
    padding: 10px 8px;
  }

  .about-page .ms-line{
    left: 18px;
    right: 18px;
    top: 34px;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

.about-page .ms-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 3px;
  border: 2px solid rgba(31,36,40,.28);
  background: rgba(255,255,255,.7);
}

.about-page .ms-title{
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--about-ink);
  letter-spacing: .02em;
}

.about-page .ms-sub{
  grid-column: 2;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: var(--about-muted);
}

/* State styling (subtle) */
.about-page .ms.is-done .ms-dot{
  background: rgba(31,36,40,.18);
  border-color: rgba(31,36,40,.18);
}

.about-page .ms.is-now .ms-dot{
  background: rgba(242,192,120,.85); /* your warm accent, restrained */
  border-color: rgba(242,192,120,.85);
}

.about-page .ms.is-next .ms-dot{
  background: rgba(255,255,255,.7);
  border-color: rgba(31,36,40,.20);
  outline: 2px solid rgba(31,36,40,.08);
  outline-offset: 2px;
}

/* Option 2 — Quiet visual anchor (concept triad) */
.about-page .about-anchor{
  max-width: var(--about-max); /* align with path cards */
  margin: 14px auto 22px auto; /* center it */
  margin-bottom: 26px;
  padding: 12px 16px;
  border: 1px solid var(--about-line);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
}


.about-page .about-triad{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--about-ink);
}

.about-page .about-triad span{
  opacity: .92;
}

.about-page .triad-arrow{
  opacity: .55;
}

.about-page .about-triad-sub{
  margin-top: 6px;
  text-align: center;
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 13px;
  color: var(--about-muted);
  letter-spacing: .01em;
}

.about-page .ms.is-now .ms-title{
  font-weight: 700;
}

/* Engaging with this space */

.engage {
  margin: 36px 0 28px 0;
}

.engage__title {
  font-family: "Arsenal SC", "Arsenal", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(77, 85, 91, 0.85);
  margin-bottom: 12px;
}

.engage__narrative {
  
  font-family: Roboto, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(47, 52, 56, 0.92);
  margin: 0 0 6px 0;
}

.engage__narrative--muted {
  color: rgba(47, 52, 56, 0.75);
}

.engage__spectrum {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.engage__node {
  text-align: center;
  min-width: 110px;
}

.engage__label {
  font-family: "Arsenal SC", "Arsenal", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 52, 56, 0.92);
}

.engage__hint {
  font-size: 13px;
  margin-top: 2px;
  color: rgba(47, 52, 56, 0.92);
}

/* --- Engage hint: icon language (dot / line / square) --- */
.engage__hint--icons{
  margin-top: 6px;
  color: rgba(47, 52, 56, 0.65);
  font-size: 0;              /* hide any accidental whitespace */
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 14px;
  opacity: 0.95;
}

/* dots */
.engage__hint--icons .hintDots{
  width: 36px;
  height: 10px;
  display: inline-block;
  position: relative;
}
.engage__hint--icons .hintDots::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(47, 52, 56, 0.55);
  box-shadow:
    -10px 0 0 rgba(47, 52, 56, 0.35),
     10px 0 0 rgba(47, 52, 56, 0.35);
}

/* line */
.engage__hint--icons .hintLine{
  width: 38px;
  height: 1px;
  display: inline-block;
  background: rgba(47, 52, 56, 0.42);
  border-radius: 2px;
}

/* squares */
.engage__hint--icons .hintSquares{
  width: 38px;
  height: 10px;
  display: inline-block;
  position: relative;
}
.engage__hint--icons .hintSquares::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: rgba(47, 52, 56, 0.45);
  box-shadow:
    -10px 0 0 rgba(47, 52, 56, 0.30),
     10px 0 0 rgba(47, 52, 56, 0.30);
  border-radius: 0px;
}


.engage__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(77, 85, 91, 0.25),
    rgba(77, 85, 91, 0.12)
  );
}

/* Mobile: stack gently */
@media (max-width: 720px) {
  .engage__spectrum {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .engage__line {
    width: 40px;
    height: 1px;
  }

  .engage__node {
    text-align: left;
  }
}

/* --- Opacity-only reveal on scroll (no movement) --- */
.reveal{
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.reveal.is-visible{
  opacity: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; opacity: 1; }
}
