/* ============================================================
   Leadership / Executive Board page
   ============================================================ */

.lead-hero {
  background: var(--forest-dark); color: #fff;
  padding: 160px 0 90px; position: relative; overflow: hidden;
}
.lead-hero .ghost-letters {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end;
  font-family: var(--serif); font-weight: 700; font-size: 58vh; color: rgba(255,255,255,.04);
  letter-spacing: -0.02em; pointer-events: none; user-select: none; padding-right: 4%;
}
.lead-hero .inner { position: relative; max-width: 760px; }
.lead-hero .badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.16);
}
.lead-hero h1 {
  font-size: clamp(46px, 7vw, 92px); line-height: 0.97; letter-spacing: -0.03em;
  margin: 24px 0 22px;
}
.lead-hero h1 .accent-text { color: var(--accent); font-style: italic; }
.lead-hero p { color: rgba(255,255,255,.74); font-size: clamp(17px,1.5vw,20px); line-height: 1.55; max-width: 52ch; }

/* group heading */
.board-group { margin-top: 56px; }
.board-group:first-of-type { margin-top: 0; }
.board-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.board-group-head .eyebrow { color: var(--forest-light); white-space: nowrap; }
.board-group-head .line { height: 1px; flex: 1; background: var(--line); }

/* grid */
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.bcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.bcard { box-shadow: var(--sh-1); }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: color-mix(in oklab, var(--forest), transparent 60%); }
.bcard .ph {
  aspect-ratio: 1/1; border: none; border-bottom: 1px solid var(--line);
  align-items: flex-end; position: relative;
}
.bcard .ph img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.bcard .ph-tag { margin: 12px; }
.bcard-body { padding: 22px 24px 26px; }
.bcard .role {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-light);
}
.bcard .bname { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.015em; color: var(--forest-dark); margin: 9px 0 14px; line-height: 1.04; }
.bcard .meta { display: flex; flex-direction: column; gap: 5px; }
.bcard .major { font-size: 14.5px; color: var(--ink-soft); line-height: 1.4; }
.bcard .pclass {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 8px;
}
.bcard .pclass::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: color-mix(in oklab, var(--forest), transparent 30%); }

/* contact strip */
.board-contact {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 24px;
  padding: 48px; text-align: center; margin-top: 80px;
}
.board-contact h2 { font-size: clamp(28px, 3.4vw, 42px); color: var(--forest-dark); margin-bottom: 14px; }
.board-contact p { color: var(--ink-soft); font-size: 17px; max-width: 50ch; margin: 0 auto 28px; }

@media (max-width: 900px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-hero { padding: 140px 0 70px; }
}
@media (max-width: 560px) {
  .board-grid { grid-template-columns: 1fr; }
  .board-contact { padding: 36px 24px; }
}

/* class Greek letter — inherits the class label's font, mono lacks Greek so serif backs it up */
.bcard .pclass .gl { font-family: var(--mono), var(--serif); font-weight: 700; letter-spacing: 0; }
/* photo-pending placeholder fills the card's square */
.bcard .ph { align-items: center; justify-content: center; }
.bcard .ph .ph-tag { margin: 0; }
