/* THE CARD, shared by all ten addresses.
   It used to be a page of its own; since the client's review of 01.09.2026 it
   is a section OF the address page, so shell.js loads this together with
   room.css wherever a page carries a location. The rules that dressed the old
   standalone document (.mn-top, .mn-plate, .mn-out) are dead with it.
   Vocabulary is base.css: no border-radius, hairlines, serif display, the text
   face for everything that is not a headline. */

/* ------------------------------------------------------------------- head */

.mn-top { padding-top: calc(var(--hd-h) + clamp(56px, 10vh, 128px)); }
.mn-top > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
}
.mn-kick {
  display: flex;
  align-items: center;
  gap: .8em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .82rem;
  color: var(--lume-3);
  margin: 0 0 clamp(16px, 2.4vh, 28px);
}
.mn-h {
  font-size: var(--t-h1);
  margin: 0 0 clamp(18px, 2.6vh, 32px);
}
.mn-lede {
  font-family: var(--sans);
  font-weight: 250;
  font-size: clamp(1rem, .94rem + .38vw, 1.22rem);
  line-height: 1.5;
  color: var(--lume-2);
  max-width: 46ch;
  margin: 0;
}
.mn-count {
  font-family: var(--sans);
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--lume-3);
  margin: clamp(20px, 3vh, 34px) 0 0;
  padding-top: clamp(14px, 2vh, 22px);
  border-top: 1px solid var(--hair);
  max-width: 24ch;
}
.mn-count .fig { color: var(--ag); font-variant-numeric: tabular-nums; }
.mn-fig { margin: 0; }
.mn-fig img { width: 100%; display: block; }

/* the plate sits in its own quiet band, as it does on every other page */
.mn-plate { display: flex; justify-content: flex-start; }

/* ------------------------------------------------------------------- card */

.mn-card {
  columns: 2;
  column-gap: clamp(40px, 6vw, 120px);
}
.mn-s {
  /* a section must not be split down the middle of its list */
  break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 clamp(38px, 5vh, 68px);
}
.mn-s-h {
  display: flex;
  align-items: baseline;
  gap: .9em;
  padding-bottom: .7em;
  border-bottom: 1px solid var(--hair);
  margin-bottom: clamp(14px, 2vh, 22px);
}
.mn-s-no {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--ag-dim);
  font-variant-numeric: tabular-nums;
}
.mn-s-h h2 {
  font-size: clamp(1.35rem, 1.1rem + .9vw, 2.05rem);
  line-height: 1.1;
  margin: 0;
}
.mn-l { list-style: none; margin: 0; padding: 0; }
/* dish, portion, price. The portion column keeps its width even when a dish has
   none, so the price column stays a straight edge down the card: a menu whose
   figures wander is a menu nobody can compare down. */
.mn-i {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  column-gap: clamp(10px, 1.4vw, 20px);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.98rem, .93rem + .22vw, 1.1rem);
  line-height: 1.45;
  color: var(--lume-2);
  padding: .52em 0;
  border-bottom: 1px solid var(--hair-2);
}
.mn-i:last-child { border-bottom: 0; }
.mn-d { min-width: 0; }
.mn-g {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--lume-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 3.6em;
  text-align: right;
}
.mn-pr {
  font-weight: 400;
  font-size: .95rem;
  color: var(--lume);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 4.6em;
  text-align: right;
}
.mn-pr--ask {
  font-weight: 300;
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--lume-3);
}

.mn-note {
  margin: clamp(26px, 4vh, 48px) 0 0;
  padding-left: clamp(16px, 1.8vw, 28px);
  border-left: 1px solid var(--hair);
  max-width: 62ch;
}

/* ------------------------------------------------------------------- out */

.mn-out {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.6vw, 20px);
  margin-bottom: clamp(48px, 8vh, 96px);
}
/* The index of the other nine cards that used to sit here is GONE (2026-08-01).
   The footer immediately below already prints every address with its hours and
   its telephone, and the INDEKS panel prints them a third time; a fourth list
   made the foot of every menu page a wall of the same ten names. */

/* the card link in the plate, and in the fixed bar */
.plate-menu { border-bottom: 1px solid var(--ag-dim); }
.plate-menu:hover { border-bottom-color: var(--ag); }

/* --------------------------------------------------------------- narrower */

@media (max-width: 1000px) {
  .mn-top > .shell { grid-template-columns: 1fr; align-items: start; }
  .mn-fig { order: -1; margin-bottom: clamp(24px, 4vh, 40px); }
  .mn-card { columns: 1; }
}
@media (max-width: 560px) {
  .mn-out .act { flex: 1 1 100%; justify-content: center; }
  /* on a phone the portion drops under the dish rather than squeezing the name
     into two words per line; the price keeps its own column */
  .mn-i { grid-template-columns: minmax(0, 1fr) auto; row-gap: .12em; }
  .mn-g { grid-row: 2; grid-column: 1; text-align: left; min-width: 0; }
}
