.focus-figure {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
}

.focus-figure strong {
  color: #a16b26;
  font: 700 clamp(3rem, 5vw, 5rem)/1 var(--serif);
}

.focus-figure span {
  font-size: .75rem;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-visual {
  grid-template: repeat(3, 1fr) / 1fr 1fr;
  min-height: 760px;
}

.category-wine {
  color: #fff;
  background: var(--wine);
}

.category-cream {
  background: #fff;
}

@media (max-width: 620px) {
  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 230px);
  }
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold);
}

.project-gallery figure {
  position: relative;
  margin: 0;
  min-height: 460px;
  overflow: hidden;
}

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

.project-gallery figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(16,17,20,.84);
  font-weight: 700;
}

.project-gallery .gallery-wide {
  grid-column: 1 / -1;
  min-height: 560px;
}

@media (max-width: 720px) {
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery figure { min-height: 330px; }
  .project-gallery .gallery-wide { grid-column: auto; min-height: 300px; }
}
