/* QR Menu photography. Kept separate so the first mobile layout remains easy to evolve. */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero.has-cover {
  min-height: 300px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #173331;
}

.hero.has-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 21, .12), rgba(8, 22, 21, .83));
}

.hero.has-cover .hero-content {
  width: 100%;
  padding: calc(26px + env(safe-area-inset-top)) 20px 24px;
}

.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title { min-width: 0; }

.menu-logo {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 17px;
  background: #fff;
  padding: 6px;
  margin-bottom: 13px;
  box-shadow: 0 9px 25px rgba(0, 0, 0, .2);
}

.has-cover .eyebrow,
.has-cover .subtitle { color: #fff; }
.has-cover .table-pill { color: var(--ink); }

.product-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7efed;
}

.product-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 28%, #fff), #eef3f1);
  color: color-mix(in srgb, var(--brand) 75%, #173331);
  font-size: 2.6rem;
  font-weight: 900;
}

.product-copy {
  position: relative;
  padding: 15px;
  min-height: 92px;
}

.product-copy .price { top: 15px; }
.product-card strong { padding-right: 72px; }
.featured-strip { grid-auto-columns: minmax(230px, 78%); }

.compact .product-card {
  padding: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 82px;
}

.compact .product-image {
  width: 92px;
  height: 100%;
  aspect-ratio: auto;
}

.compact .product-copy {
  min-height: 82px;
  padding: 14px;
}

.product-modal-image {
  display: block;
  width: calc(100% + 44px);
  max-height: 360px;
  object-fit: cover;
  margin: -22px -22px 20px;
}

@media (min-width: 720px) {
  .hero.has-cover .hero-content {
    padding-left: 28px;
    padding-right: 28px;
  }
}
