/* =============================================================================
   MODULE · b-shotbar — the Shot Bar Happy Hour band (2 Sep 2026)

   A poster, not a passage: the discount is the biggest thing on the band and
   the day and time are the second. The copy takes the wide left track, the
   menu sits in a white card on the right so the ten shot names read as a
   list rather than a paragraph. Stacks under 900px, card under copy.

   Sage ground (band--sage sets it, and the tall band padding). Text is ink
   and forest; the button is btn--primary. Nothing here sets a colour that is
   not a token.
   ========================================================================== */

.b-shotbar {
  position: relative;
  overflow: clip;
  scroll-margin-top: var(--header-h);
}

.b-shotbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(var(--sp-10), 6vw, var(--sp-24));
  row-gap: var(--sp-10);
  align-items: center;
}

.b-shotbar__eyebrow {
  margin: 0 0 var(--sp-4);
  color: var(--home-forest);
}

.b-shotbar__h {
  margin: 0;
  display: grid;
  gap: var(--sp-3);
  font-family: var(--font-display);
  color: var(--home-forest-deep);
  font-weight: 500;
}

/* The number. Larger than any display step in the ramp on purpose — it is a
   figure, not a sentence, and it has to carry from across the room. */
.b-shotbar__big {
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.b-shotbar__line {
  font-size: var(--t-display-m);
  line-height: var(--lh-display-m);
  font-weight: 400;
  max-inline-size: 20ch;
  text-wrap: balance;
}

.b-shotbar__lede {
  margin: var(--sp-6) 0 0;
  max-inline-size: 46ch;
  font-size: var(--t-body-l);
  line-height: var(--lh-body);
  color: var(--ink);
}

.b-shotbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4) var(--sp-6);
  margin: var(--sp-8) 0 0;
}

.b-shotbar__phone {
  display: inline-flex;
  align-items: center;
  min-block-size: var(--tap-min);
  color: var(--ink);
  font-weight: 600;
}

/* --- the menu card ------------------------------------------------------- */

/* The photograph sits flush across the top of the card; the copy below keeps
   the card's padding. 3:2, the asset's own ratio, so the box never crops. */
.b-shotbar__card {
  display: grid;
  padding: 0;
  overflow: hidden;
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius-card);
  border-block-start: 4px solid var(--home-forest-deep);
  box-shadow: var(--shadow-panel);
}

.b-shotbar__card-media { margin: 0; }
.b-shotbar__card-media img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.b-shotbar__card-body {
  display: grid;
  gap: var(--sp-5);
  padding: clamp(var(--sp-6), 3vw, var(--sp-10));
}

.b-shotbar__card-label {
  margin: 0;
  color: var(--home-sage-ink);
}

.b-shotbar__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2) var(--sp-3);
  color: var(--home-forest-deep);
}
.b-shotbar__price strong {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.2vw, 3.75rem);
  line-height: 1;
  font-weight: 500;
}
.b-shotbar__price span {
  font-size: var(--t-body);
  color: var(--soft);
}
.b-shotbar__price s {
  font-size: var(--t-small);
  color: var(--soft);
  text-decoration-thickness: 1px;
}

.b-shotbar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--sp-6);
}
.b-shotbar__menu li {
  padding-block: var(--sp-2);
  border-block-end: 1px solid var(--line);
  font-size: var(--t-body);
  line-height: var(--lh-body);
}
.b-shotbar__menu small {
  display: block;
  font-size: var(--t-small);
  line-height: var(--lh-small);
  color: var(--soft);
}

.b-shotbar__note {
  margin: 0;
  font-size: var(--t-small);
  line-height: var(--lh-small);
  color: var(--soft);
}

.b-shotbar__from {
  margin: 0;
  justify-self: start;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 999px;
  background: var(--home-forest-deep);
  color: var(--home-paper);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* --- stacked ---------------------------------------------------------------
   Last in the file, on purpose (the mod-column.css lesson). */
@media (max-width: 899.98px) {
  .b-shotbar__inner { grid-template-columns: minmax(0, 1fr); }
  .b-shotbar__big { font-size: clamp(4rem, 19vw, 6.5rem); }
  .b-shotbar__line { max-inline-size: none; }
}
@media (max-width: 479.98px) {
  .b-shotbar__menu { grid-template-columns: minmax(0, 1fr); }
}
