/* Eastend Pie & Mash — shared menu card.
   ONE definition of the card's paper, border, keylines, type scale and
   spacing, consumed by BOTH the public /menu page and the /admin console
   (ADMIN-CONSOLE-BUILD-BRIEF.md §7.2). Neither page may carry its own copy.
   Every value here was moved verbatim from the card markup in menu.html;
   changes to the public card's appearance must start in this file and pass
   the visual parity tests in tests/admin.spec.js. */

.menu-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 38px);
  background:
    radial-gradient(closest-side at 84% 90%, rgba(146, 104, 44, .09), transparent 60%),
    radial-gradient(130% 110% at 15% 0%, #fdf5df, #f0e2bd 74%, #e4d09e 100%);
  border: 2px solid #7c5c2e;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 5px #f4e8ca,
    inset 0 0 0 7px #24160f,
    inset 0 0 0 9px rgba(170, 130, 69, .55),
    inset 0 3px 26px rgba(120, 86, 40, .28),
    0 26px 50px rgba(9, 17, 34, .45);
}

/* The public Catering Menu card uses the same shell with slightly roomier
   padding, as it always has. */
.menu-card--catering {
  padding: clamp(28px, 4vw, 42px);
}

.menu-card-border-dotted {
  position: absolute;
  inset: 10px;
  border: 3px dotted rgba(124, 92, 46, .52);
  border-radius: 10px;
  pointer-events: none;
}

.menu-card-border-ink {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(36, 22, 15, .72);
  border-radius: 7px;
  pointer-events: none;
}

.menu-card-kicker {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #9a7b46;
  letter-spacing: .04em;
  font-size: 15px;
  margin-bottom: 2px;
}

.menu-card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: .98;
  margin: 0;
  color: #24160f;
}

.menu-card-price-all {
  font-family: 'FuturaBoldCond', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: .04em;
  color: #f6ecd0;
  background: #7b211b;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
}

.menu-card-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #7a5a30;
  font-size: 15px;
  margin: 8px 0 0;
}

.menu-card-rule {
  height: 2px;
  background: linear-gradient(90deg, #8a6a37, rgba(138, 106, 55, 0));
  margin: 16px 0 14px;
}

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

.menu-card-item {
  margin: 0 0 13px;
}

.menu-card-item-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-card-item-name {
  font-family: 'FuturaBoldCond', sans-serif;
  font-size: clamp(19px, 2.4vw, 22px);
  letter-spacing: .02em;
  color: #24160f;
}

.menu-card-leader {
  flex: 1;
  min-width: 16px;
  position: relative;
  top: -4px;
  border-bottom: 2px dotted #b59a5d;
}

.menu-card-item-price {
  font-family: 'FuturaBoldCond', sans-serif;
  font-size: clamp(19px, 2.4vw, 22px);
  color: #7b211b;
  white-space: nowrap;
}

.menu-card-item-desc {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.4;
  color: #4a3826;
  margin-top: 2px;
  max-width: 42ch;
}
