/* The Menu — dinner by Bacio */

.menu-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--tupa-yellow);
  margin: 0 auto 3rem;
  max-width: 30ch;
}

/* The printed menu card — floral painting with the teal bill of fare */
.menu-sheet {
  margin: 0 auto;
  width: min(100%, 48rem);
}
.menu-sheet img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.menu-sheet__pending {
  display: grid;
  place-content: center;
  gap: 0.75rem;
  text-align: center;
  aspect-ratio: 3 / 4;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.18);
}
.menu-sheet__pending .eyebrow { color: var(--tupa-red); }
.menu-sheet__pending p { margin: 0; }

.menu-credit {
  margin-top: 3rem;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}
/* A white plaque lets the partner mark keep its own colour on the black page */
.menu-credit__logo {
  background: var(--gallery);
  padding: clamp(0.9rem, 2vw, 1.4rem) clamp(1.25rem, 3vw, 2rem);
  line-height: 0;
  transition: transform 0.3s var(--ease-out-expo);
}
.menu-credit__logo:hover, .menu-credit__logo:focus-visible { transform: translateY(-2px); }
.menu-credit__logo img {
  height: clamp(2rem, 4.5vw, 3rem);
  width: auto;
}
