/* Two-column project category hero (Interior / Building / Commercial) */
.project-hero {
  background: var(--cream, #faf7f2);
  padding: 48px 40px 64px;
}

.project-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.project-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(15, 27, 45, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--navy, #0f1b2d);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 22px;
  transition: background 0.25s, border-color 0.25s;
}

.project-hero-back:hover {
  background: #fff;
  border-color: rgba(15, 27, 45, 0.28);
}

.project-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.project-hero-tag {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(15, 27, 45, 0.14);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy, #0f1b2d);
  background: rgba(255, 255, 255, 0.55);
}

.project-hero-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 12px;
  font-weight: 600;
}

.project-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--navy, #0f1b2d);
  line-height: 1.08;
  margin-bottom: 16px;
}

.project-hero-sub {
  font-size: 0.95rem;
  color: var(--muted, #7a7269);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}

.project-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--navy, #0f1b2d);
  color: #fff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.project-hero-cta:hover {
  background: var(--primary, #1a3c6e);
  transform: translateY(-2px);
}

.project-hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  box-shadow: 0 24px 60px rgba(15, 27, 45, 0.12);
}

.project-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-hero-location {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy, #0f1b2d);
}

@media (max-width: 1024px) {
  .project-hero {
    padding: 40px 32px 56px;
  }

  .project-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 680px;
  }

  .project-hero-sub {
    max-width: none;
  }

  .project-hero-visual {
    max-height: 400px;
    aspect-ratio: 16 / 10;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 36px 24px 48px;
  }

  .project-hero-inner {
    max-width: 100%;
    gap: 28px;
  }

  .project-hero-title {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .project-hero-visual {
    max-height: 340px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .project-hero {
    padding: 32px 18px 48px;
  }

  .project-hero-title {
    font-size: 2.2rem;
  }

  .project-hero-visual {
    border-radius: 16px;
    max-height: 280px;
  }
}
