.resto-menu {
  width: 100%;
}

.resto-menu__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.resto-menu__title {
  position: relative;
  margin: 0 0 36px;
  text-align: center;
  color: #eedbc7;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
}

.resto-menu__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 10px auto 0;
  background: #c7a585;
}

.resto-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 18px;
}

.resto-menu__grid--columns-1 {
  grid-template-columns: 1fr;
}

.resto-menu__grid--columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resto-menu__grid--columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resto-menu__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.resto-menu__item {
  min-width: 0;
}

.resto-menu__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.resto-menu__item-name,
.resto-menu__item-price {
  color: #e8d4bf;
  font-family: "Jost", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.resto-menu__item-price {
  white-space: nowrap;
  text-align: right;
}

.resto-menu__item-note {
  margin-top: 5px;
  color: #d9c4ae;
  font-family: "Jost", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .resto-menu__grid,
  .resto-menu__grid--columns-2,
  .resto-menu__grid--columns-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .resto-menu__title {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .resto-menu__row {
    gap: 10px;
  }

  .resto-menu__item-name,
  .resto-menu__item-price {
    font-size: 12px;
  }
}
