/* ===== PROJECT HERO ===== */
.project-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  background: url('webimages/coho-concrete-gallery-25.webp') center/cover no-repeat;
  padding-bottom: 56px;
}

.project-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.2) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.project-hero-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 68, 128, 0.85);
  border: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.project-hero-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.project-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.6;
}

/* ===== BODY ===== */
.project-body {
  padding: 80px 0;
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.project-lead {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  margin-bottom: 28px;
}

.project-copy h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-copy p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.project-gallery img {
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
}

.project-meta {
  background: #f0f3f6;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 18px;
}

.project-meta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: #666;
}

.meta-row:last-child {
  border-bottom: none;
}

.project-cta {
  background: #0b2f55;
  color: #fff;
  border-radius: 16px;
  padding: 28px;
}

.project-cta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .project-hero-content h1 {
    font-size: 2.1rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }
}

