/* ============================================================
   Scapes — foundation.css
   Section patterns specific to foundation pages: ValueRow,
   Founder bio+portrait+facts, philosophy block.
   Loads alongside program.css + program-ext.css.
   ============================================================ */

/* ============================================================
   VALUES — two-column row (no photo). Used on The Why.
   Re-uses the .pg-anatomy section shell with a different row layout.
   ============================================================ */
.pg-values__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: start;
  padding: clamp(52px, 6vw, 79px) 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) {
  .pg-values__row { grid-template-columns: 1fr; gap: clamp(16px, 3vw, 24px); }
}
/* Numeral + label: numeral reads as a small tracked index above the label,
   not a first-gen oversized number below it. Scoped to the values rows. */
.pg-values__row .pg-anatomy__left { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(10px, 1.2vw, 14px); }
.pg-values__row .pg-anatomy__index {
  order: -1; margin: 0;
  font-family: var(--font-body); font-weight: 500;
  font-size: 11.5px; line-height: 1;
  letter-spacing: 0.34em; text-indent: 0.34em;
  color: var(--bronze); opacity: .82;
  display: flex; align-items: center; gap: 12px;
}
.pg-values__row .pg-anatomy__index::after {
  content: ""; width: clamp(22px, 3vw, 40px); height: 1px;
  background: currentColor; opacity: .45; margin-left: -0.2em;
}
.pg-values__row .pg-anatomy__label { font-size: clamp(23px, 2.1vw, 31px); }
.pg-values__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15; letter-spacing: -0.012em;
  color: var(--linen);
  margin: 0; text-wrap: balance; max-width: 20ch;
}
.pg-values__title em { font-style: normal;  color: var(--scapes-sandstone); }
.pg-values__prose {
  font-family: var(--font-text); font-size: 16px;
  line-height: 1.75; color: var(--mist);
  margin-top: clamp(18px, 2vw, 24px); max-width: 54ch;
}
.pg-values__prose em {
  
  color: var(--scapes-sandstone); font-style: normal; font-weight: 400;
  font-size: 1.28em;
}

/* ============================================================
   FOUNDER — bio + portrait + facts layout
   ============================================================ */
.fd-bio {
  font-family: var(--font-text);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.78;
  color: var(--linen);
  max-width: 60ch;
}
.fd-bio p + p { margin-top: 1.1em; }
.fd-bio em {
  
  font-style: normal; font-weight: 400;
  color: var(--scapes-sandstone);
  font-size: 1.32em;
  line-height: 1.25;
}

.fd-split {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
@media (max-width: 980px) {
  .fd-split { grid-template-columns: 1fr; gap: clamp(40px, 7vw, 64px); }
}

.fd-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background-size: cover; background-position: center;
  filter: saturate(0.9) brightness(0.85);
}
.fd-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0) 50%, rgba(10,8,7,0.55) 100%);
}
.fd-portrait__caption {
  position: absolute; left: 28px; bottom: 24px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--linen); z-index: 2;
}

.fd-facts {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
}
@media (max-width: 520px) { .fd-facts { grid-template-columns: 1fr; gap: 22px; } }
.fd-fact { display: flex; flex-direction: column; gap: 8px; }
.fd-fact__label {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--scapes-sandstone); font-weight: 500;
}
.fd-fact__value {
  font-family: var(--font-body); font-style: normal; font-weight: 300;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2; color: var(--linen);
}

/* ============================================================
   PHILOSOPHY — three giant declarative lines
   ============================================================ */
.fd-philo {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 1.0; letter-spacing: -0.024em;
  color: var(--linen);
  text-wrap: balance;
  margin: 0;
}
.fd-philo + .fd-philo { margin-top: clamp(10px, 1.4vw, 18px); }
.fd-philo em { font-style: normal;  font-weight: 300; color: var(--scapes-sandstone); }
.fd-philo .muted { color: var(--mist); }
.fd-philo .muted em { color: var(--scapes-sandstone); }
