.restaurant-cover {
  display: none;
}
@media only screen and (min-width: 768px) {
  .restaurant-cover {
    height: calc(100 * var(--vh) - var(--top-pad));
    display: block;
    position: relative;
    color: var(--white);
    z-index: 2;
  }
}
.restaurant-cover__bg,
.restaurant-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.restaurant-cover__bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.restaurant-cover img {
  -o-object-fit: cover;
     object-fit: cover;
}
.restaurant-cover__copy {
  position: relative;
  font-family: Reader;
  --mb: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.3125rem;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .restaurant-cover__copy {
    --mb: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .restaurant-cover__copy {
    grid-column: 3/span 6;
    margin-bottom: 0;
  }
}
.restaurant-cover__heading {
  font-family: Reader;
  font-size: 6.25rem;
  letter-spacing: 3px;
  line-height: 6.875rem;
  padding: 1.5rem;
  z-index: 0;
}
.restaurant-cover__cta {
  border-color: currentColor;
  z-index: 0;
}
.restaurant-cover__restaurants {
  position: absolute;
  bottom: 0;
  padding: 0 1.5rem;
  width: 100%;
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.restaurant-cover__restaurants :link,
.restaurant-cover__restaurants :visited {
  color: var(--white);
}
.restaurant-cover__restaurant-link {
  display: block;
  color: var(--white);
  will-change: opacity;
  opacity: 1;
  transition: all 0.3s ease;
  padding: 1rem;
}
.restaurant-cover__restaurant-link:hover {
  opacity: 0.75;
  color: var(--beige);
}
.restaurant-cover__restaurant-link path, .restaurant-cover__restaurant-link rect, .restaurant-cover__restaurant-link polygon {
  fill: currentColor;
}

.restaurant-anchors {
  display: none;
}
@media only screen and (min-width: 768px) {
  .restaurant-anchors {
    font-family: ReaderMedium;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    line-height: 1.125rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    padding: 0.875rem 1.5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: -6rem auto 6rem;
    background-color: var(--white);
    z-index: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 3.8125rem;
    width: 100%;
  }
  .restaurant-anchors__link {
    position: relative;
    padding: 0 1rem;
  }
  .restaurant-anchors__link:after {
    content: "";
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    right: 0;
    border-bottom: 1px solid;
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    transition: all 0.3s ease;
  }
  .restaurant-anchors__link:link, .restaurant-anchors__link:visited {
    text-decoration: none;
  }
  .restaurant-anchors__link:link:hover:after, .restaurant-anchors__link:visited:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.restaurant-index {
  padding: 5rem 1rem 0;
}
@media only screen and (min-width: 768px) {
  .restaurant-index {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(32, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.restaurant-index__col--2 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .restaurant-index__col--1 {
    grid-column: 3/span 13;
  }
  .restaurant-index__col--2 {
    display: block;
    grid-column: 18/span 13;
  }
}

.restaurant-item {
  opacity: 0;
  display: block;
}
.restaurant-item:not(:last-child) {
  margin-bottom: 2rem;
}
.restaurant-col .restaurant-item {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .restaurant-item {
    margin-bottom: 6rem;
  }
  .restaurant-item:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.restaurant-item__cover {
  display: block;
  position: relative;
  margin-top: 10px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__cover {
    margin-top: 0;
    cursor: default;
  }
}
.restaurant-item__img {
  width: 100%;
  height: auto;
  display: block;
}
.restaurant-item__text {
  display: none;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__text {
    margin-top: 37px;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .show .restaurant-item__text {
    display: block;
  }
}
.restaurant-item__title {
  font-family: Reader;
  --mb: 1.875rem;
  font-size: 1.375rem;
  letter-spacing: 0.5px;
  line-height: 1.875rem;
  margin-bottom: 17px;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__title {
    --mb: 2.625rem;
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media only screen and (min-width: 768px) {
  .restaurant-item__title {
    grid-column: 3/span 10;
    margin: 0;
  }
}
.restaurant-item__copy {
  font-family: Reader;
  --mb: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.3125rem;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__copy {
    --mb: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .restaurant-item__copy {
    grid-column: 3/span 10;
    position: relative;
    margin: 0 auto;
  }
}
.restaurant-item__copy p:not(:last-child), .restaurant-item__copy ul:not(:last-child), .restaurant-item__copy ol:not(:last-child) {
  margin-bottom: var(--mb);
}
.restaurant-item__location {
  display: none;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__location {
    display: block;
    position: absolute;
    bottom: 100%;
    right: calc(100% + 1rem);
    font-family: ReaderMedium;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    line-height: 1.125rem;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 768px) {
  .restaurant-item__loc-wrapper {
    display: block;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    padding: 0 0.25rem;
  }
}
.restaurant-item__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--mb);
}
@media only screen and (min-width: 768px) {
  .restaurant-item__actions {
    justify-content: space-between;
  }
}
.restaurant-item__actions .button {
  margin-right: 1rem;
}
.restaurant-item__action {
  font-family: ReaderMedium;
  font-size: 0.625rem;
  letter-spacing: 1.2px;
  line-height: 1rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (min-width: 768px) {
  .restaurant-item__action {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

.rest-mob-header {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--black_rgb), 0.5);
  color: var(--white);
  opacity: 1;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  .show .rest-mob-header {
    opacity: 0;
  }
}
.rest-mob-header__title {
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  will-change: opacity;
}
.rest-mob-header__location {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
@media only screen and (min-width: 768px) {
  .rest-mob-header {
    display: none;
  }
}
