.history-section,
.location-section,
.cuisine-section,
.hospitality-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .18);
  box-shadow: var(--shadow-lg);
}

.history-section::after,
.location-section::after,
.cuisine-section::after,
.hospitality-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(120deg,
      rgba(212, 175, 55, 0),
      rgba(212, 175, 55, .35),
      rgba(243, 231, 165, .22),
      rgba(212, 175, 55, .12),
      rgba(212, 175, 55, 0));

  -webkit-mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-clip: content-box, border-box;

  mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  mask-origin: content-box, border-box;
  mask-clip: content-box, border-box;

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .60;
}


.history-section h2,
.location-section h2,
.cuisine-section h2,
.hospitality-section h2 {
  font-size: clamp(2.15rem, 2.8vw, 3rem);
  margin-bottom: 2.2rem;
}

.history-section p,
.location-section p,
.cuisine-section p,
.hospitality-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 74ch;
  margin: 0 auto 1.1rem;
}

.history-section p:first-of-type::first-letter,
.location-section p:first-of-type::first-letter,
.cuisine-section p:first-of-type::first-letter,
.hospitality-section p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-title);
  font-size: 3.1rem;
  line-height: .95;
  margin: .12rem .6rem 0 0;
  color: var(--gold);
  text-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.history-section p+p,
.location-section p+p,
.cuisine-section p+p,
.hospitality-section p+p {
  padding-top: .9rem;
  margin-top: .9rem;
  border-top: 1px solid rgba(212, 175, 55, .14);
}

.dish-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin: 2.2rem auto 0;
  max-width: 1100px;
}

.dish-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: var(--shadow-md);
  filter: saturate(1.06) contrast(1.04);
  transform: translateZ(0);
  transition: transform var(--dur-2) var(--ease), filter var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.dish-gallery img:nth-child(1) {
  grid-column: 1 / span 5;
}

.dish-gallery img:nth-child(2) {
  grid-column: 6 / span 4;
}

.dish-gallery img:nth-child(3) {
  grid-column: 10 / span 3;
}
.container {
    background:white
}