/* ── Shared inner-page drama (menu + specials) ── */

.page-hero--flare {
  position: relative;
  overflow: hidden;
}

.page-hero--flare::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background: url("/assets/images/comics/flare-food.svg") center 120% /  min(520px, 90vw) no-repeat;
  pointer-events: none;
}

.page-hero--flare.page-hero--specials::before {
  background-image: url("/assets/images/comics/flare-nights.svg");
  background-position: center 110%;
}

.page-hero--flare .container { position: relative; z-index: 1; }

.page-hero__title--shimmer {
  background: linear-gradient(90deg, var(--text) 0%, var(--gold-light) 45%, var(--text) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-gold 6s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__title--shimmer {
    animation: none;
    color: var(--text);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}

/* Menu */
.menu-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-neon);
  background:
    linear-gradient(135deg, rgba(255, 45, 85, 0.12), rgba(255, 180, 0, 0.08)),
    var(--bg-card);
  box-shadow: var(--shadow-neon);
  text-align: center;
}

.menu-ribbon__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.menu-ribbon__chip i { color: var(--gold); }

.menu-ribbon__chip strong { color: var(--gold); }

.menu-board { max-width: 960px; margin-inline: auto; }

.menu-placard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .menu-placard-grid {
    grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
    gap: 1.15rem 1.25rem;
  }
}

@media (min-width: 900px) {
  .menu-placard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.menu-card:hover {
  border-color: rgba(255, 180, 0, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.menu-card__photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0a0a0a;
  cursor: zoom-in;
  overflow: hidden;
}

.menu-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s var(--ease-out);
}

.menu-card__photo:hover img,
.menu-card__photo:focus-visible img {
  transform: scale(1.04);
}

.menu-card__zoom {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--gold);
  font-size: 0.72rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.menu-card__photo:hover .menu-card__zoom,
.menu-card__photo:focus-visible .menu-card__zoom {
  opacity: 1;
}

.menu-card__body {
  padding: 0.65rem 0.75rem 0.75rem;
  flex: 1;
}

.menu-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.25rem;
}

.menu-card__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.menu-card__price {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-card__desc {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .menu-card:hover { transform: none; }
  .menu-card__photo:hover img,
  .menu-card__photo:focus-visible img { transform: none; }
}
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.35s, background 0.35s;
}

.menu-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.menu-section__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.menu-section__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 45, 85, 0.14);
  color: var(--neon);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.15);
}

.menu-section__title {
  font-size: 1.35rem;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
  border: 0;
  padding: 0;
}

.menu-section__intro,
.menu-section__footer {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.menu-section__footer {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.menu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  padding: 0.85rem 0.65rem;
  margin-inline: -0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

.menu-item:hover {
  background: rgba(255, 180, 0, 0.06);
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.menu-item__name {
  font-weight: 600;
  flex: 0 1 auto;
}

.menu-item__dots {
  flex: 1 1 2rem;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(255, 180, 0, 0.28);
  margin-bottom: 0.35rem;
  opacity: 0.7;
}

.menu-item__price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: text-shadow 0.25s;
}

.menu-item:hover .menu-item__price {
  text-shadow: 0 0 12px rgba(255, 180, 0, 0.45);
}

.menu-item__desc {
  flex: 1 1 100%;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  padding-left: 0.15rem;
}

/* Specials */
.specials-board { max-width: 760px; margin-inline: auto; }

.special-day {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.special-day::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--day-a, transparent) 0%, transparent 55%);
  opacity: 0.35;
  pointer-events: none;
}

.special-day:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.special-day.is-today {
  border-color: var(--border-neon);
  box-shadow: var(--shadow-neon);
  animation: today-pulse 3s ease-in-out infinite;
}

.special-day.is-today::after {
  content: "TODAY";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--neon);
  color: #fff;
  z-index: 2;
}

@keyframes today-pulse {
  0%, 100% { box-shadow: var(--shadow-neon); }
  50% { box-shadow: 0 0 56px rgba(255, 45, 85, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .special-day.is-today { animation: none; }
  .special-day:hover { transform: none; }
  .menu-item:hover { transform: none; }
}

.special-day__aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 3.25rem;
}

.special-day__dow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1;
}

.special-day__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.special-day__body {
  position: relative;
  z-index: 1;
}

.special-day h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.special-day p { color: var(--text-muted); margin: 0; }

.special-day--mon { --day-a: rgba(196, 122, 42, 0.5); }
.special-day--tue { --day-a: rgba(26, 74, 154, 0.55); }
.special-day--wed { --day-a: rgba(255, 45, 85, 0.45); }
.special-day--thu { --day-a: rgba(140, 80, 200, 0.45); }
.special-day--daily { --day-a: rgba(0, 104, 56, 0.4); }
.special-day--nfl { --day-a: rgba(0, 80, 48, 0.5); }

.specials-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Reviews — sketched hearts between hero and footer */
.reviews-stage {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
}

.reviews-hearts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.reviews-hearts__scatter,
.reviews-hearts__art {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1200px, 118%);
  height: auto;
  min-height: 105%;
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: none;
  animation: hearts-sway 20s ease-in-out infinite;
}

/* Gentle per-heart drift — old-school floating doodles */
.heart-drift {
  transform-box: fill-box;
  transform-origin: center;
  animation: heart-drift 9s ease-in-out infinite;
}

.heart-drift--1 { animation-duration: 11s; animation-delay: 0s; }
.heart-drift--2 { animation-duration: 8.5s; animation-delay: -1.2s; }
.heart-drift--3 { animation-duration: 10s; animation-delay: -2.4s; }
.heart-drift--4 { animation-duration: 12s; animation-delay: -0.8s; }
.heart-drift--5 { animation-duration: 9.5s; animation-delay: -3s; }
.heart-drift--6 { animation-duration: 13s; animation-delay: -1.8s; }
.heart-drift--7 { animation-duration: 8s; animation-delay: -4s; }
.heart-drift--8 { animation-duration: 11.5s; animation-delay: -2s; }
.heart-drift--9 { animation-duration: 10.5s; animation-delay: -3.5s; }
.heart-drift--10 { animation-duration: 7.5s; animation-delay: -1s; }
.heart-drift--11 { animation-duration: 14s; animation-delay: -5s; }

@keyframes hearts-sway {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -52%) rotate(0.4deg); }
}

@keyframes heart-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(7px, -9px) rotate(1.2deg); }
  50% { transform: translate(-5px, 6px) rotate(-1deg); }
  75% { transform: translate(4px, 4px) rotate(0.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-hearts__scatter,
  .reviews-hearts__art,
  .heart-drift {
    animation: none;
  }
}

.reviews-stage .section {
  position: relative;
  z-index: 1;
}

.page-reviews .quote-card {
  background: rgba(22, 12, 16, 0.62);
  backdrop-filter: blur(2px);
  border-color: rgba(255, 45, 85, 0.28);
}

.page-reviews .quote-card__author {
  color: var(--neon);
}

/* Live music */
.music-highlights {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.music-highlights li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.music-highlights li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.music-when h3 {
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.music-when__time {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.music-when__day {
  color: var(--neon);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin: 0 0 0.85rem;
}

.music-when p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.music-roster {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .music-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.music-artist {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.music-artist__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 180, 0, 0.12);
  color: var(--gold);
  font-size: 1.1rem;
}

.music-artist__name {
  margin: 0 0 0.25rem;
  color: var(--text);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.music-artist__style {
  margin: 0 0 0.35rem;
  color: var(--neon);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-artist__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
