/* Unified layout — About, Mission, What we do, Projects */

.page-hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.page-hero__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #ffffff;
  text-transform: uppercase;
}

.page-hero__lead {
  margin: 1.15rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.page-prose {
  max-width: 42rem;
  margin-top: 0.25rem;
}

.page-prose > p {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.page-prose > p:first-child {
  margin-top: 1rem;
}

.page-prose > p.page-prose__emphasis {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.page-prose > p.page-prose__closing {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* Section headings */
.page-section__head {
  max-width: 42rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.page-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.page-section__lead {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  line-height: 1.65;
}

.page-section__num {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(0, 212, 170, 0.95);
}

/* Split: sticky head + body (About story, WWD sections) */
.page-section__split {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.page-section__head--sticky {
  position: sticky;
  top: calc(var(--header-h, 56px) + 1.5rem);
}

/* Stats bar */
.page-stats {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 0.85rem;
}

.page-stats__item {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.page-stats__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .page-section__split {
    grid-template-columns: 1fr;
  }

  .page-section__head--sticky {
    position: static;
  }

  .page-hero__title {
    max-width: none;
  }
}
