.food-showcase {
  padding: 104px clamp(22px, 8vw, 130px) 116px;
  background: var(--forest);
  color: var(--cream);
}

.food-showcase-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(240px, .6fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}

.food-showcase-heading .section-label {
  color: var(--green);
}

.food-showcase-heading h2 {
  font-size: clamp(3.7rem, 6.2vw, 6.6rem);
}

.food-showcase-heading > p {
  max-width: 310px;
  margin: 0 0 8px;
  color: #d5e3d6;
}

.food-photo-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(205px, 1fr));
  gap: 12px;
}

.food-photo {
  position: relative;
  min-height: 205px;
  margin: 0;
  overflow: hidden;
  background: #f3ead9;
}

.food-photo-feature {
  grid-row: 1 / 3;
}

.food-photo img {
  position: absolute;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.crop-half img {
  width: 200%;
  height: 100%;
}

.crop-duo img {
  width: 200%;
  height: 100%;
}

.crop-left img {
  left: 0;
  top: 0;
}

.crop-right img {
  left: -100%;
  top: 0;
}

.crop-six img {
  width: 300%;
  height: 200%;
  left: calc(var(--col) * -100%);
  top: calc(var(--row) * -100%);
}

.food-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding: 42px 15px 14px;
  background: linear-gradient(transparent, rgba(10, 25, 15, .86));
  color: #fffdf6;
}

.food-photo figcaption strong {
  font-size: .82rem;
}

.food-photo figcaption span {
  color: #9bea80;
  font-size: .66rem;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .food-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .food-photo-feature {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  .food-showcase {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .food-showcase-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .food-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 190px);
  }

  .food-photo-feature {
    grid-row: span 2;
  }
}

@media (max-width: 430px) {
  .food-photo-grid {
    gap: 8px;
    grid-template-rows: repeat(4, 155px);
  }

  .food-photo figcaption {
    display: block;
    padding: 34px 10px 10px;
  }

  .food-photo figcaption span {
    display: block;
    margin-top: 2px;
  }
}
