/* ============================================
   PROJECTS PAGE
   ============================================ */

.page-header {
  padding: 140px 32px 80px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
  margin: 0 auto;
}

/* ---- Projects Grid ---- */
.projects-grid {
  padding: 80px 32px;
  background: #0a0a0a;
}

.projects-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,149,106,0.2);
}

.project-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #B8956A;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- CTA ---- */
.cta-section {
  padding: 80px 32px;
  background: #111;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .projects-inner { grid-template-columns: 1fr; }
}
