/* =============================================================================
   ALPENDRA — pages/about.css
   About page — who we are, values, leadership
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   WHO WE ARE
   ───────────────────────────────────────────────────────────────────────────── */
.who-we-are {
  padding: var(--section-pad);
  background-color: var(--white);
}

.who-content {
  max-width: 800px;
}

.who-content .eyebrow {
  margin-bottom: 16px;
}

.who-content h2 {
  margin-bottom: 28px;
  color: var(--navy);
}

.who-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.who-content p:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   VALUES
   ───────────────────────────────────────────────────────────────────────────── */
.values-section {
  padding: var(--section-pad);
  background-color: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: var(--gray-line);
  max-width: 860px;
  margin-top: 64px;
}

.value-cell {
  background-color: var(--white);
  padding: 48px 40px;
  transition: background-color var(--transition);
}

.value-cell:hover {
  background-color: var(--gold-pale);
}

.value-number {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(11, 31, 58, 0.05);
  line-height: 1;
  margin-bottom: 8px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LEADERSHIP
   ───────────────────────────────────────────────────────────────────────────── */
.leadership-section {
  padding: var(--section-pad);
  background-color: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.leader-card {
  display: flex;
  flex-direction: column;
}

/* ── Leader Photo Area ────────────────────────────────────────────────────── */
.leader-photo {
  height: 280px;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Placeholder initial when no photo */
.leader-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(200, 164, 93, 0.15);
  border: 1px solid rgba(200, 164, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.leader-photo-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Leader Info ──────────────────────────────────────────────────────────── */
.leader-info {
  padding: 24px 0;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

.leader-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.leader-bio {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 72px 24px;
  }

  .values-section {
    padding: 72px 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .leadership-section {
    padding: 72px 24px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .leader-photo {
    height: 240px;
  }
}
