.about-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.12) saturate(0.4);
  z-index: 0;
}

.about-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.about-page nav {
  z-index: 10;
}

.about-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 580px;
  padding: 0 2rem;
}

.about-label {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.35);
  margin-bottom: 1.5rem;
}

.about-bio {
  font-family: 'Cardo', serif;
  font-size: clamp(1.4rem, 2.2vw, 2.0rem);
  font-weight: 400;
  line-height: 1.4;
  color: #f0ede8;
  letter-spacing: -0.01em;
}
