.portfolio-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem 2rem;
  flex-wrap: wrap;
}

.portfolio-hero h1 {
  font-size: 5rem;
  color: #ff4a00;
  margin: 0;
}

.portfolio-hero p {
  max-width: 400px;
  color: #666;
  margin-top: 1rem;
}

.cta-circle {
  background-color: #ff4a00;
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
  cursor: pointer;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.portfolio-item {
  position: relative;
}

.portfolio-item.large {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.caption {
  margin-top: 0.8rem;
}

.caption h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.caption h4 span {
  color: #ff4a00;
}

.caption p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.3rem;
}
