/* "Our Menus" — the read-the-menu page (client 7/29, rebuilt 8/8).
   Each printed menu is a photograph, a name, a line, and one link. Tokens only. */

/* The huge gap between the sticky header and "Our Menus" had a dull cause: the template
   asks for .section--tight-top, but that class is only DEFINED in pages/menu.css, which
   this page does not load. So the modifier did nothing and the section fell back to the
   full section rhythm — on a phone that was most of the first screen spent on nothing.
   Defined here so the page it is written on actually gets it. */
.section--tight-top { padding-top: clamp(8px, 1.6vw, 14px); }

.menus__h {
  margin: 0 0 clamp(8px, 1.2vw, 12px);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.08;
}
/* NB: the intro paragraph is styled by .pagelede in base.css and nothing here.
   Same fault as careers.css: it set color:var(--ink-2) on what is now a dark panel.
   It also cut the size to 0.95rem, which is the opposite of the ask. */

.menus__list { list-style: none; margin: 0; padding: 0; }

/* MOBILE: photo on the left, text on the right. A whole-width photo per menu would
   make seven menus into seven screens of scrolling.
   NOTE the flex-basis. The previous rule was `flex: 1 1 20rem` on .menus__body inside a
   COLUMN container, where flex-basis sets HEIGHT — every row reserved 320px of empty
   space between the blurb and the buttons. That was the "huge space" the client saw. */
.menus__card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: clamp(14px, 4vw, 20px);
  padding: clamp(14px, 3vw, 18px) 0;
  border-bottom: 1px solid var(--line);
}
.menus__list > .menus__card:first-child { border-top: 1px solid var(--line); }

.menus__media { display: block; border-radius: var(--r); overflow: hidden; background: var(--bg-soft); }
.menus__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.menus__card:hover .menus__media img { transform: scale(1.04); }

.menus__body { min-width: 0; }
.menus__name {
  margin: 0 0 2px;
  font-size: clamp(1.02rem, 3.4vw, 1.25rem);
  line-height: 1.2;
}
.menus__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.menus__dated {
  margin: 4px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* One link per menu, and it is the only action on the row — the sticky bar already
   carries Order Now everywhere, so a second door to it here was noise. */
.menus__read {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menus__read:hover { border-bottom-color: var(--ink); }

@media (min-width: 700px) {
  .menus__card { grid-template-columns: 150px 1fr; gap: 28px; padding: 22px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .menus__media img, .menus__card:hover .menus__media img { transition: none; transform: none; }
}

/* The line out to /wine-list (April, 8/28). Sits between the lede and the shelf of printed
   menus, deliberately not styled as one of the cards — it goes somewhere different. */
.menus__aside {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.menus__aside a { color: var(--ink); border-bottom: 1px solid var(--line); }
.menus__aside a:hover, .menus__aside a:focus-visible { border-bottom-color: var(--ink); }
