/* ==========================================================================
   Photography Section (Homepage)
   ========================================================================== */

.photography {
  position: relative;
  z-index: 1;
  padding: 60px 0 48px;
  text-align: center;
}

.section-title {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 92px;
}

.photo-card {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  aspect-ratio: 0.7 / 1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.photo-card:nth-child(2) {
  transform: translateY(60px);
}

.photo-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    aspect-ratio: 1 / 1;
  }

  .section-title {
    font-size: 36px;
  }
}
