/* ============================================================
   MASTERCRAFT — About Page
   ============================================================ */

.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,12,0.4) 0%, rgba(14,14,12,0.95) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-top: 20px;
}

.about-hero-title em {
  font-style: italic;
  color: var(--light-gray);
}

/* MANIFESTO */
.about-manifesto {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.manifesto-block p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.manifesto-block p:last-child {
  margin-bottom: 0;
}

.manifesto-block p:first-child:not(.manifesto-heading + p) {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--off-white);
}

.manifesto-heading {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 28px;
}

.manifesto-divider {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 60px 0;
  opacity: 0.6;
}

/* TEAM */
.about-team {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--off-black);
}

.about-team-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 16px;
  max-width: 640px;
}

.about-founding-advisors {
  margin-top: 48px;
}

.advisor-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--black);
  border-left: 2px solid rgba(120,140,200,0.3);
  margin-top: 20px;
}

.advisor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(120,140,200,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: #8899cc;
  border: 1px solid rgba(120,140,200,0.3);
  flex-shrink: 0;
}

.advisor-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 4px;
}

.advisor-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8899cc;
  margin-bottom: 14px;
}

.advisor-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--warm-gray);
}

/* COMMITMENT */
.about-commitment {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-commit-inner {
  max-width: 640px;
}

.about-commit-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.apprenticeship-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  margin: 32px 0;
}

.app-stat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-stat:last-child {
  border-right: none;
}

.app-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
}

.app-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .advisor-card {
    flex-direction: column;
  }
  .apprenticeship-stats {
    flex-direction: column;
  }
  .app-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}
