.gastronomy-page { background: #fffdf5; }

.gastronomy-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--blue-dark);
}

.gastronomy-hero__photo,
.gastronomy-hero__shade { position: absolute; inset: 0; }

.gastronomy-hero__photo {
  background: url("assets/images/hg8.jpg") center 46% / cover no-repeat;
}

.gastronomy-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 38, 95, .95) 0%, rgba(5, 38, 95, .72) 47%, rgba(5, 38, 95, .18) 82%),
    linear-gradient(0deg, rgba(5, 38, 95, .45), transparent 55%);
}

.gastronomy-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 86px;
  padding-bottom: 86px;
}

.gastronomy-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.gastronomy-hero p {
  max-width: 600px;
  margin: 0;
  color: #edf4ff;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.gastronomy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gastronomy-intro { padding-bottom: 28px; }
.gastronomy-intro .section-heading { margin-bottom: 0; }
.gastronomy-menu { padding-top: 30px; }

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 72, 153, .14);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 36px rgba(5, 38, 95, .08);
}

.menu-card--wide { grid-column: 1 / -1; }

.menu-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 24px 26px 20px;
  color: white;
  background: var(--blue-dark);
}

.menu-card__head--red { background: #d82322; }
.menu-card__head--yellow { color: var(--blue-dark); background: var(--yellow); }

.menu-card__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-card__head--yellow span { color: var(--blue); }
.menu-card__head--red span { color: white; }

.menu-card__head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.05;
}

.menu-card__head small { color: inherit; font-weight: 800; white-space: nowrap; }
.menu-card__body { padding: 21px 26px 25px; }

.menu-list { display: grid; gap: 13px; margin: 0; }

.menu-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 10px;
}

.menu-list__item dt,
.menu-list__item dd { margin: 0; }
.menu-list__item dt { color: var(--blue-dark); font-weight: 750; }
.menu-list__item dd { color: var(--blue); font-weight: 900; white-space: nowrap; }
.menu-list__dots { min-width: 16px; border-bottom: 2px dotted #c7d1df; transform: translateY(-5px); }
.menu-list__note { display: block; color: #718096; font-size: .72rem; font-weight: 500; }

.meal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.meal-card {
  position: relative;
  padding: 22px 22px 20px 72px;
  border: 1px solid #dbe4f1;
  border-radius: 14px;
  background: #f8fbff;
}

.meal-card__number {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 900;
}

.meal-card:nth-child(even) .meal-card__number { color: var(--blue-dark); background: var(--yellow); }
.meal-card h3 { margin: 0 0 5px; color: var(--blue-dark); font-size: 1.08rem; }
.meal-card p { margin: 0; color: #617089; font-size: .86rem; }
.meal-card strong { display: block; margin-top: 12px; color: var(--blue); font-size: 1.42rem; }

.menu-card__footnote,
.menu-section-note { margin: 16px 0 0; color: #718096; font-size: .76rem; }

.original-menu {
  color: white;
  background: var(--blue-dark);
}

.original-menu .section-heading h2 { color: white; }
.original-menu .section-heading p { color: #cbd8ed; }
.original-menu .eyebrow { color: var(--yellow); }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.menu-preview-grid figure {
  margin: 0;
  overflow: hidden;
  border: 6px solid white;
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
}

.menu-preview-grid img { width: 100%; height: auto; display: block; }

.original-menu__actions { margin-top: 30px; text-align: center; }

.additives {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
}

.additives summary { padding: 16px 19px; cursor: pointer; color: white; font-weight: 800; }
.additives__content { padding: 0 19px 18px; color: #cbd8ed; font-size: .78rem; }
.additives__content p { margin: 5px 0; }

@media (max-width: 820px) {
  .menu-category-grid,
  .meal-grid,
  .menu-preview-grid { grid-template-columns: 1fr; }
  .menu-card--wide { grid-column: auto; }
}

@media (max-width: 720px) {
  .gastronomy-hero { min-height: 390px; }
  .gastronomy-hero__shade { background: linear-gradient(90deg, rgba(5, 38, 95, .92), rgba(5, 38, 95, .58)); }
  .gastronomy-hero__content { padding-top: 64px; padding-bottom: 64px; }
  .menu-card__head { padding: 21px 20px 18px; }
  .menu-card__body { padding: 19px 20px 23px; }
  .menu-list__item { gap: 7px; }
  .menu-list__item dt { font-size: .9rem; }
}

