/* Conncise — About page styles (loaded after style.css) */

/* ---------- page hero (shared idiom) ---------- */
.page-hero { padding: 108px 0 88px; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 860px;
  text-wrap: balance;
  margin-top: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.sec-title em { font-style: italic; }
.page-lede {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink2);
  max-width: 640px;
  text-wrap: pretty;
}

/* ---------- story ---------- */
.story p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink2);
  max-width: 560px;
  text-wrap: pretty;
  margin-top: 18px;
}
.story p strong { font-weight: 600; color: var(--ink); }

/* ---------- beliefs (relief idiom) ---------- */
.beliefs { max-width: 470px; margin-left: auto; }
.beliefs-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-bottom: 14px;
}
.beliefs ul { list-style: none; }
.beliefs li {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  padding: 16px 4px;
  border-top: 1px solid var(--hair);
  align-items: baseline;
}
.beliefs li:last-child { border-bottom: 1px solid var(--hair); }
.beliefs strong { font-weight: 600; font-size: 15px; color: var(--accent); }
.beliefs span { font-size: 14.5px; line-height: 1.55; color: var(--ink2); }

/* ---------- team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.tm-photo {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e3e0d9;
  background: var(--paper2);
  border: 1px solid var(--hairp);
}
.tm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.tm-photo img[src*="marcel-legerstee"] { object-position: center 42%; transform: scale(1.12); transform-origin: 50% 32%; }
.tm-photo img[src*="anton-plaisier"] { object-position: center 42%; }
.tm-name { font-weight: 600; font-size: 16px; color: var(--ink); margin-top: 16px; }
.tm-role { font-size: 14px; color: var(--ink2); margin-top: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .page-hero { padding: 72px 0 64px; }
  .page-hero h1 { font-size: 42px; }
  .beliefs { max-width: 100%; margin-left: 0; }
  .beliefs li { grid-template-columns: 1fr; gap: 4px; }
  .team-grid { margin-top: 44px; gap: 20px; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
