.reservations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  background: #eee3d0;
  overflow: hidden;
}

.reservations-copy {
  max-width: 650px;
}

.reservations h2 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.reservations h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.reservations-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 30px 0;
  font-size: 1.1rem;
}

.hours {
  max-width: 530px;
  margin: 0 0 32px;
  border-top: 1px solid rgba(24, 63, 53, .25);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 63, 53, .25);
}

.hours dt {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 600;
}

.hours dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.button-reserve {
  background: var(--ink);
  color: #fff;
}

.button-reserve:hover {
  background: var(--terracotta);
}

.reservations-poster {
  position: relative;
  margin: 0;
  max-width: 530px;
  justify-self: center;
  box-shadow: 22px 28px 0 var(--terracotta), 0 24px 55px rgba(25, 18, 12, .2);
  transform: rotate(1.2deg);
}

.reservations-poster::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224, 173, 57, .38);
  pointer-events: none;
  z-index: 1;
}

.reservations-poster img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .reservations {
    grid-template-columns: 1fr;
  }

  .reservations-poster {
    width: min(88%, 520px);
    box-shadow: 14px 18px 0 var(--terracotta), 0 18px 40px rgba(25, 18, 12, .18);
  }
}

@media (max-width: 520px) {
  .reservations h2 {
    font-size: 3.2rem;
  }

  .hours div {
    align-items: baseline;
  }

  .button-reserve {
    width: 100%;
    justify-content: center;
  }
}
