/* ==========================================================================
   Scoreboard Bar & Grill — "Last Call"
   The bar at night: near-black room, warm cream light, one loud red, brass trim.

   Loads AFTER shared/css/fonts.css and shared/css/base.css, so anything here
   wins on equal specificity. base.css owns the reset, focus rings, the menu
   leader-dot mechanics and reduced-motion. This file only skins.

   Contents
     1.  Tokens
     2.  Page shell + typography primitives
     3.  Buttons
     4.  Header + navigation
     5.  Hero
     6.  Open right now (the lit sign)
     7.  House favorites
     8.  The menu
     9.  Daily specials + happy hour
     10. The drink list — signature pours + the printed drink card
     11. The story + the comeback
     12. The Purple Plunge
     13. What to know
     14. Gallery
     15. Hours & location + map facade
     16. Ratings & recognition
     17. Footer
     18. Sticky mobile action bar
     19. Print
   ========================================================================== */


/* ==========================================================================
   1. TOKENS
   Retune the whole site from here.
   ========================================================================== */

:root {
  /* --- the room ---------------------------------------------------------- */
  --ink:        #12100E;  /* base: near-black, warmed */
  --ink-deep:   #0A0908;  /* the strip under the hero, the footer */
  --ink-2:      #1A1613;  /* raised panels */
  --ink-3:      #241E19;  /* cards sitting on panels */

  /* --- the light --------------------------------------------------------- */
  --cream:      #F4EFE6;  /* headings, 16:1 on --ink */
  --cream-2:    #D8D0C3;  /* body copy, 12.5:1 */
  --cream-3:    #A79C8C;  /* meta, captions, 7:1 */

  /* --- the accents ------------------------------------------------------- */
  /* Red is loud but only clears 3.2:1 on the base, so it is reserved for
     large display type and solid fills. Brass carries every small accent. */
  --red:        #C8102E;
  --red-lit:    #E4213E;
  --brass:      #C8963E;  /* 7.2:1 on --ink — safe at any size */
  --brass-lit:  #E7B963;

  /* --- lines ------------------------------------------------------------- */
  --rule:       rgba(200, 150, 62, 0.30);
  --rule-soft:  rgba(244, 239, 230, 0.10);
  --rule-hard:  rgba(244, 239, 230, 0.18);

  /* --- type -------------------------------------------------------------- */
  --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --font-cond:    'Oswald', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* --- metrics ----------------------------------------------------------- */
  --header-h:   60px;
  --wrap:       1180px;
  --gut:        1.15rem;
  --sticky-h:   64px;

  /* The full nav + phone + Order button need ~870px of header. Below this the
     hamburger stays. Measured, not guessed. */
  --nav-breakpoint: 1000px;

  --radius:     3px;   /* the tavern is square-edged; this is barely a radius */
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.55);
}

@media (min-width: 760px) {
  :root { --gut: 1.5rem; }
}
@media (min-width: 1000px) {
  :root { --header-h: 74px; }
}
@media (min-width: 1200px) {
  :root { --gut: 2rem; }
}


/* ==========================================================================
   2. PAGE SHELL + TYPOGRAPHY PRIMITIVES
   ========================================================================== */

html {
  /* base.css sets 5rem; keep anchors clear of this design's header instead. */
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  background: var(--ink);
  color: var(--cream-2);
  font-family: var(--font-body);
  font-size: 1rem;
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 720px) {
  body { padding-bottom: 0; }
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* Every top-level section gets its own vertical rhythm and a hairline. */
main > section {
  padding-block: clamp(3.25rem, 8vw, 6.5rem);
  border-top: 1px solid var(--rule-soft);
  position: relative;
}
main > section.hero { border-top: 0; }

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
  color: var(--cream);
  font-size: clamp(2.35rem, 9vw, 4.75rem);
}

.section-lede {
  margin-top: 1.1rem;
  max-width: 46ch;
  font-size: 1.02rem;
  color: var(--cream-3);
}

a { text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

:focus-visible {
  outline: 3px solid var(--brass-lit);
  outline-offset: 3px;
}

.noscript-note {
  padding-block: 1.5rem;
  color: var(--cream-3);
  font-size: 0.95rem;
}
.noscript-note p {
  border-left: 3px solid var(--brass);
  padding-left: 1rem;
  max-width: 62ch;
}
.noscript-note a { color: var(--brass-lit); }


/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease,
              color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-red:hover,
.btn-red:focus-visible { background: var(--red-lit); border-color: var(--red-lit); }

.btn-ghost {
  color: var(--brass-lit);
  border-color: var(--rule);
  background: transparent;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--brass);
  background: rgba(200, 150, 62, 0.10);
  color: var(--brass-lit);
}

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 0.95rem;
}


/* ==========================================================================
   4. HEADER + NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  /* Floats over the hero on a scrim strong enough to keep the cream and the
     brass legible over whatever the photograph is doing behind it. Then it
     lights up solid once you scroll. */
  background: linear-gradient(to bottom,
    rgba(10, 9, 8, 0.90) 0%,
    rgba(10, 9, 8, 0.62) 58%,
    rgba(10, 9, 8, 0) 100%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.site-header.is-stuck {
  background: rgba(14, 12, 10, 0.94);
  border-bottom-color: var(--rule);
  backdrop-filter: saturate(140%) blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* --- brand ---------------------------------------------------------------- */

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
  min-width: 0;
}
.brand-mark {
  width: auto;
  height: 30px;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.22rem;
  white-space: nowrap;
}

@media (min-width: 1000px) {
  .brand-mark { height: 40px; }
  .brand-name { font-size: 1.45rem; }
}

/* --- nav ------------------------------------------------------------------ */

.site-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-decoration: none;
  transition: color 0.16s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--brass-lit); }
.site-nav a.is-current { color: var(--brass); }

/* Mobile: a panel that drops out of the header.
   Positioned absolutely against .site-header (which is fixed, so it is always a
   containing block) rather than against the viewport — that keeps it pinned
   correctly whether or not the header is currently running a backdrop-filter. */
@media (max-width: 999px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem var(--gut) 1.5rem;
    background: var(--ink-2);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-lift);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    /* visibility keeps the links out of the tab order while closed */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  body.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .site-nav a {
    padding: 0.85rem 0.15rem;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--rule-soft);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav-tel { color: var(--brass) !important; }
}

@media (min-width: 1000px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-right: 0.5rem;
  }
  .site-nav-tel { display: none; }
}
@media (min-width: 1200px) {
  .site-nav { gap: 1.65rem; }
}

/* --- header actions ------------------------------------------------------- */

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}

.header-tel {
  display: none;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--brass-lit);
}
.header-tel-kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.header-tel-num {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}
.header-tel:hover .header-tel-num { color: var(--brass-lit); }

.header-order { display: none; }

@media (min-width: 1000px) {
  .header-tel { display: flex; }
  .header-order { display: inline-flex; padding: 0.7rem 1.15rem; }
}

/* --- hamburger (drawn in CSS; no icon font anywhere on this site) --------- */

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--cream);
  flex: none;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }

.nav-toggle[aria-expanded='true'] { border-color: var(--brass); color: var(--brass-lit); }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
}


/* ==========================================================================
   5. HERO
   Full bleed photo, the name set as large as it can honestly go.
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;   /* fallback for browsers without small-viewport units */
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -2;
}

/* Two layers: a hard floor so the type always sits on black, and a warm
   lamp-glow from the lower left so it reads like a lit room, not a filter.
   The 58%/78% stops are the band the h1 lands in — the lit umbrellas are
   right behind it there, so those two stops carry the contrast budget for
   the title and are deliberately heavier than the picture alone would want. */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 18% 88%, rgba(200, 150, 62, 0.20), transparent 60%),
    linear-gradient(to top,
      var(--ink) 0%,
      rgba(18, 16, 14, 0.94) 26%,
      rgba(18, 16, 14, 0.74) 58%,
      rgba(18, 16, 14, 0.64) 78%,
      rgba(10, 9, 8, 0.78) 100%);
}

.hero-inner { position: relative; }

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(0.68rem, 2.6vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* The address is the one small run of type sitting straight on the photograph,
   and small type has to clear 4.5:1. Plain --brass over the lit umbrellas
   measured 2.62:1 at 375px, failing across a quarter of the run, and no gold
   can be rescued by a shadow alone: brass tops out at 2.7:1 against white, so
   dimming a blown-out highlight only drags it *through* the text luminance.
   So the run carries its own plate. At 78% over --ink-deep even a pure white
   pixel behind it composites to ~#40, which puts --brass-lit at 5.7:1 in the
   worst case the photograph can produce; measured on the real hero it is 9.5:1
   at every width from 320 up. box-decoration-break keeps the plate tight to
   each line when the address wraps on a narrow phone. */
.hero-eyebrow-plate {
  color: var(--brass-lit);
  background: rgba(10, 9, 8, 0.78);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.3em 0.55em;
  margin-left: -0.55em;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.95), 0 0 3px rgba(0, 0, 0, 0.9);
}

.hero-title { margin: 0; }
.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(3.4rem, 17.5vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.012em;
  /* keeps the cream legible if the photo behind it is bright */
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.7);
}
.hero-title-sub {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  /* Brass, not red. This line sits on the photograph, and --red-lit tops out
     at 4.15:1 even on solid --ink — over the lit umbrellas behind it, sampled
     pixels fell to 1.9:1. Brass clears 4.5:1 across the whole run at every
     width, and it matches the cream/brass lockup in the header. Red stays on
     the solid fills (.btn-red, the rules) where it earns its contrast. */
  color: var(--brass-lit);
  font-size: clamp(1.2rem, 5.2vw, 2.35rem);
  letter-spacing: 0.34em;
  margin-top: 0.7rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  margin-top: clamp(1.3rem, 4vw, 1.9rem);
  max-width: 22ch;
  font-size: clamp(1.15rem, 4.6vw, 1.65rem);
  line-height: 1.28;
  color: var(--cream);
  text-wrap: balance;
}
.hero-kicker {
  margin-top: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: clamp(1.75rem, 5vw, 2.5rem);
}
.hero-ctas .btn { flex: 1 1 auto; min-width: 0; }

@media (min-width: 620px) {
  .hero-ctas .btn { flex: 0 0 auto; }
}
@media (min-width: 900px) {
  .hero { min-height: 92vh; min-height: 92svh; }
  .hero-tagline { max-width: 26ch; }
}


/* ==========================================================================
   6. OPEN RIGHT NOW — the lit sign
   The single most useful thing on the page, so it gets the brightest surface.
   ========================================================================== */

.now {
  background: var(--ink-deep);
  border-block: 1px solid var(--rule);
  padding-block: clamp(1.6rem, 4vw, 2.1rem);
  position: relative;
  overflow: hidden;
}
/* faint amber wash behind the sign */
.now::before {
  content: '';
  position: absolute;
  inset: -50% auto auto -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(200, 150, 62, 0.14), transparent);
  pointer-events: none;
}

.now-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.now-heading {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.7rem;
}

.now-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.now-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
  background: var(--cream-3);
  box-shadow: none;
}
.now-label {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 2.9rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}
.now-detail {
  margin-top: 0.45rem;
  font-size: 1rem;
  color: var(--cream-2);
}
.now-fallback { color: var(--cream-2); }

/* Lit: amber glow on the dot and the word. Reads as a sign that is switched on. */
.now-state.is-open .now-dot {
  background: var(--brass-lit);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.18), 0 0 22px 3px rgba(231, 185, 99, 0.65);
  animation: sign-pulse 3.4s ease-in-out infinite;
}
.now-state.is-open .now-label {
  color: var(--brass-lit);
  text-shadow: 0 0 34px rgba(231, 185, 99, 0.4);
}
.now-state.is-shut .now-label { color: var(--cream-3); }
.now-state.is-shut .now-dot { background: rgba(200, 16, 46, 0.75); }

@keyframes sign-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .now-state.is-open .now-dot { animation: none; }
}

.now-col-special {
  border-top: 1px solid var(--rule-soft);
  padding-top: 1.35rem;
}
.now-kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.now-line {
  font-size: clamp(1.02rem, 3.6vw, 1.2rem);
  color: var(--cream);
  line-height: 1.4;
}
.now-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-lit);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.15rem;
}
.now-link:hover { border-bottom-color: var(--brass); }

@media (min-width: 760px) {
  .now-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: center;
  }
  .now-col-special {
    border-top: 0;
    border-left: 1px solid var(--rule-soft);
    padding-top: 0;
    padding-left: 2.5rem;
  }
}


/* ==========================================================================
   7. HOUSE FAVORITES — the burger runs the food story
   ========================================================================== */

.fav-feature {
  display: grid;
  gap: 0;
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.15rem;
}
.fav-feature-media { margin: 0; }
.fav-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.fav-feature-copy { padding: clamp(1.5rem, 5vw, 3rem); }

.fav-flag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
}
.fav-feature-name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(1.9rem, 7.5vw, 3.4rem);
  line-height: 0.95;
}
.fav-feature-price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--brass);
  margin-top: 0.7rem;
  font-variant-numeric: tabular-nums;
}
.fav-feature-blurb {
  margin-top: 1.1rem;
  max-width: 44ch;
  color: var(--cream-2);
  font-size: 1.05rem;
}
.fav-feature-note {
  margin-top: 1.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--brass);
  max-width: 42ch;
  color: var(--cream);
  font-size: 0.98rem;
}
.fav-feature-sub {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-soft);
  max-width: 52ch;
  color: var(--cream-3);
  font-size: 0.88rem;
}

.fav-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.fav-card {
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fav-card:hover { border-color: var(--rule); transform: translateY(-2px); }
.fav-card-media { margin: 0; }
.fav-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.fav-card-copy { padding: 1.35rem 1.35rem 1.6rem; }
.fav-card-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
}
.fav-card-price {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  color: var(--brass);
  margin-top: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.fav-card-blurb {
  margin-top: 0.75rem;
  font-size: 0.94rem;
  color: var(--cream-3);
}

@media (min-width: 860px) {
  .fav-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fav-feature-media img { height: 100%; aspect-ratio: auto; min-height: 420px; }
  .fav-feature-copy { align-self: center; }
}


/* ==========================================================================
   8. THE MENU
   A printed menu read in a dark room. Leader dots, tight columns, real breaks.
   ========================================================================== */

.menu { background: var(--ink-deep); }

/* Sticky section jump bar. Scrolls sideways inside itself — never the page. */
.menu-nav-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--rule-soft);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.menu-nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.6rem;
  scroll-snap-type: x proximity;
}
.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav-link {
  flex: none;
  scroll-snap-align: start;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}
.menu-nav-link:hover,
.menu-nav-link:focus-visible {
  color: var(--brass-lit);
  border-color: var(--brass);
  background: rgba(200, 150, 62, 0.08);
}

/* --- sections ------------------------------------------------------------- */

.menu-section {
  padding-block: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--rule-soft);
  scroll-margin-top: calc(var(--header-h) + 4.25rem);
}
.menu-section:first-child { border-top: 0; padding-top: 0; }

.menu-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(1.75rem, 6.5vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--red);
  margin-bottom: 0.9rem;
}
.menu-section-sub {
  max-width: 60ch;
  margin-bottom: 1.75rem;
  color: var(--cream-3);
  font-size: 0.94rem;
  font-style: italic;
}

/* Two columns on a wide screen, like a folded menu. Items never split. */
.menu-items { margin: 0; }
@media (min-width: 900px) {
  .menu-items {
    column-count: 2;
    column-gap: 3.5rem;
  }
}

.menu-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.menu-item:first-child { padding-top: 0; }

/* base.css owns the flex mechanics of .menu-item-head — this only paints it. */
.menu-item-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.menu-item-dots {
  border-bottom: 1px dotted rgba(200, 150, 62, 0.45);
}
.menu-item-price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--brass);
}

/* Cup / Bowl, Medium / Large.
   Two prices on one row is the widest thing on the menu. Allowing this block to
   shrink and wrap is what keeps a 320px phone from scrolling sideways: the
   second portion drops onto its own line instead of pushing the page out. */
.menu-item-prices {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1rem;
  align-items: baseline;
}
.menu-portion {
  display: inline-flex;
  gap: 0.4rem;
  align-items: baseline;
  white-space: nowrap;
}
.menu-portion-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.menu-item-desc {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cream-3);
  max-width: 56ch;
}

.menu-item-variant { margin-top: 0.5rem; }
.menu-item-variant .menu-item-name {
  font-size: 0.92rem;
  color: var(--cream-2);
}
.menu-item-variant .menu-item-price { font-size: 0.92rem; }

.menu-item-note {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--cream-3);
  max-width: 54ch;
}

.menu-badge {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brass);
  border-radius: var(--radius);
}

.menu-addons {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}
.menu-addon {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--cream-3);
  max-width: 100%;
}
.menu-addon-price {
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-footnote {
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-left: 2px solid var(--brass);
  background: rgba(200, 150, 62, 0.06);
  font-size: 0.86rem;
  color: var(--cream-2);
}

/* --- menu footer ---------------------------------------------------------- */

.menu-notes {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.4rem;
}
.menu-note {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}
.menu-note::before {
  content: '';
  display: inline-block;
  width: 1.4rem;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 0.7rem;
}
.menu-updated {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--cream-3);
}
.menu-order {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}


/* ==========================================================================
   9. DAILY SPECIALS + HAPPY HOUR
   Live on the current site at a URL nothing links to. Here it gets a board.
   ========================================================================== */

.specials-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.special-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.special-card.is-today {
  border-color: var(--red);
  background: var(--ink-3);
  box-shadow: 0 0 0 1px var(--red), 0 18px 44px rgba(200, 16, 46, 0.14);
}
/* Monday reads as closed through colour and a recessed surface, never through
   a blanket opacity: alpha on the card composites every child against the
   section behind it, which dropped the word "Closed" to 3.28:1. Each muted
   value is set explicitly here and measured on --ink: the day name 7.0:1, the
   word "Closed" 7.0:1. */
.special-card.is-closed {
  background: var(--ink);
  border-style: dashed;
  border-color: var(--rule-hard);
}
.special-card.is-closed .special-day { color: var(--cream-3); }
.special-card.is-closed .special-closed { color: var(--cream-3); }

.special-today-flag {
  position: absolute;
  top: -0.7rem;
  left: 1.1rem;
  padding: 0.24rem 0.6rem;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.special-day {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}
.special-card.is-today .special-day { color: var(--cream); }

.special-closed {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cream-3);
}

.special-food {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-soft);
}
.special-food-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: var(--brass-lit);
}
.special-food-note {
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: var(--cream-3);
}

.special-drinks { display: grid; gap: 0.65rem; }
.special-drink {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 0.75rem;
  align-items: baseline;
}
.special-drink-name {
  font-size: 0.95rem;
  color: var(--cream);
  min-width: 0;
}
.special-drink-price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.special-drink-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--cream-3);
}

.special-hh-flag {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
  border-top: 1px solid var(--rule-soft);
}

/* --- happy hour ----------------------------------------------------------- */

.happy-hour {
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(200, 150, 62, 0.10), transparent 65%),
    var(--ink-2);
  display: grid;
  gap: 0.5rem;
}
.hh-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--brass-lit);
}
.hh-when {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.hh-items {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.hh-item {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--cream-2);
}


/* ==========================================================================
   10. THE DRINK LIST
   Two blocks. First the three pours we hold a photograph of; then the whole
   printed drink card, which is the newest and largest thing on this page —
   nine cocktails, six martinis, seven drafts, twenty-five bottles, wine and
   seltzers.

   Nothing in here carries a price and nothing in here may grow one: the
   printed card has none, and the only drink prices ever published for this bar
   date to 2020. DRINKS_NOTE and DRINK_MENU_NOTE point at the bartender instead.

   The card is set as one raised panel rather than as more page, so a list that
   long reads as a thing you were handed instead of a wall of names.
   ========================================================================== */

/* Sub-head above each block. The rule finishes the line so the two blocks read
   as a matched pair without either of them needing a second section title. */
.drinks-sub {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.drinks-sub::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
}
/* app.js sets .js on <html> before it renders anything. Without it there are no
   cards under this sub-head and no card under the kicker, so neither should be
   left standing over nothing — the section-lede and the fallback carry it. */
html:not(.js) .drinks-sub,
html:not(.js) .drinkmenu-kicker { display: none; }

.drinks-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.drink-card {
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.drink-card:hover { border-color: var(--rule); }
.drink-media { margin: 0; }
.drink-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.drink-copy { padding: 1.2rem 1.25rem 1.5rem; }
.drink-flag {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.drink-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
}
.drink-desc {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--cream-3);
}

/* DRINKS_NOTE is a full two-clause sentence now, not the short tag it used to
   be, so the display tracking and the all-caps come off: set as before it was a
   shouted line the width of the section. */
.drinks-note {
  margin-top: 1.5rem;
  max-width: 54ch;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--brass);
}


/* --- the printed drink card ----------------------------------------------- */

/* Jump bar, same behaviour as the food menu's. Its background is tuned to this
   section's --ink rather than the menu's --ink-deep so it reads as this
   section's own furniture. Only one of the two can ever be pinned at a time:
   a sticky element is bounded by its own section. */
.drinkmenu-nav-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  margin-top: clamp(2.25rem, 6vw, 3.5rem);
  background: rgba(18, 16, 14, 0.95);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--rule-soft);
}
/* Pure enhancement: with the script off there are no links in it and no card
   under it, so the whole bar goes rather than pinning an empty strip. */
.drinkmenu-nav-wrap:not(:has(.menu-nav-link)) { display: none; }

.drinkmenu-nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.6rem;
  scroll-snap-type: x proximity;
}
.drinkmenu-nav::-webkit-scrollbar { display: none; }
/* .menu-nav-link, from section 8, skins the pills the shared renderer emits. */

.drinkmenu {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.35rem, 4.5vw, 2.75rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(200, 150, 62, 0.09), transparent 62%),
    var(--ink-2);
}

.drinkmenu-kicker {
  margin-bottom: 1.5rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* Cleared by renderDrinkMenu(), which empties its container before it writes. */
.drinkmenu-fallback {
  max-width: 56ch;
  font-size: 0.95rem;
  color: var(--cream-2);
}
.drinkmenu-fallback a { color: var(--brass-lit); }

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

.drinkmenu-section {
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
  border-top: 1px solid var(--rule-soft);
  /* Header, then the pinned jump bar, then room to breathe. */
  scroll-margin-top: calc(var(--header-h) + 5rem);
}
.drinkmenu-section:first-child { border-top: 0; padding-top: 0; }

/* Brass where the food menu's rule is red: same weight of type, different bar. */
.drinkmenu-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 5.5vw, 2.3rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--brass);
  margin-bottom: 1.15rem;
}

/* --- cocktails and martinis: a name and what is in it --------------------- */

.drinkmenu-items { margin: 0; }
@media (min-width: 880px) {
  .drinkmenu-items {
    column-count: 2;
    column-gap: 3rem;
  }
}

.drinkmenu-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--rule-soft);
}
.drinkmenu-item:first-child { padding-top: 0; }

.drinkmenu-item-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.drinkmenu-item-desc {
  margin-top: 0.25rem;
  max-width: 46ch;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--cream-3);
}

/* --- beer, wine and seltzers: names only ---------------------------------- */

.drinkmenu-group + .drinkmenu-group { margin-top: 1.6rem; }

.drinkmenu-group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
.drinkmenu-group-label::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule-soft);
}

/* Twenty-five bottles in a single column is a wall. Columns turn it into a
   board, and every column is bounded by the panel, so the page still never
   scrolls sideways. One column at 360px: "Miller Genuine Draft" needs the room. */
.drinkmenu-names {
  margin: 0;
  columns: 1;
  column-gap: 2.25rem;
}
@media (min-width: 520px) { .drinkmenu-names { columns: 2; } }
@media (min-width: 960px) { .drinkmenu-names { columns: 3; } }

.drinkmenu-name {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  padding-block: 0.36rem;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--cream-2);
}
/* The same leading-rule idiom .menu-note uses, in miniature and in brass. */
.drinkmenu-name::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
  vertical-align: middle;
  margin-right: 0.6rem;
}

.drinkmenu-footnote {
  margin-top: 1.25rem;
  max-width: 60ch;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--brass);
  background: rgba(200, 150, 62, 0.06);
  font-size: 0.86rem;
  color: var(--cream-2);
}

/* DRINK_MENU_NOTE, signing the card off. Empty until app.js writes it. */
.drinkmenu-note {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.84rem;
  color: var(--cream-3);
}
.drinkmenu-note:empty { display: none; }


/* ==========================================================================
   11. THE STORY + THE COMEBACK
   ========================================================================== */

.story { background: var(--ink-deep); overflow: hidden; }

/* A thin band of red across the top of the section — the bar's own colour
   used as a rule, not as decoration. */
.story-band {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 22%, transparent 22%);
}

.story-inner { display: grid; gap: 2.25rem; }

.story-title { max-width: 14ch; }

.story-lede {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 4.2vw, 1.35rem);
  line-height: 1.45;
  color: var(--cream);
  max-width: 40ch;
}
.story-copy p + p { margin-top: 1.1rem; }
.story-copy p:not(.story-lede):not(.eyebrow) {
  max-width: 54ch;
  color: var(--cream-2);
}
.story-copy > p:nth-of-type(2) { margin-top: 1.6rem; }

.story-figure { margin: 0; }
.story-figure img {
  width: 100%;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
}
.story-figure figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* --- fact strip ----------------------------------------------------------- */

.story-facts {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background: var(--ink);
  padding: 1.25rem 1.25rem 1.4rem;
}
.fact-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.fact-body { margin: 0.5rem 0 0; }
.fact-value {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--brass-lit);
  line-height: 1.15;
}
.fact-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--cream-3);
}

/* --- the comeback --------------------------------------------------------- */

.comeback {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 4.5vw, 2.75rem);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.comeback-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 5.5vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}
.comeback-body {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--cream-2);
}
.comeback-quote {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  max-width: 62ch;
}
.comeback-quote p {
  font-style: italic;
  color: var(--cream);
  font-size: 1.02rem;
}
.comeback-quote footer {
  margin-top: 0.7rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

@media (min-width: 900px) {
  .story-inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }
  /* Joe rides alongside the copy instead of leaving a column of dead black. */
  .story-figure {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
  .story-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 560px) and (max-width: 899px) {
  .story-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ==========================================================================
   12. THE PURPLE PLUNGE
   An independent Lake Zurich charity that stages here every March. It gets
   a full section, not a footnote.
   ========================================================================== */

.plunge-inner { display: grid; gap: 2rem; }

.plunge-figure { margin: 0; }
.plunge-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--rule-soft);
}

.plunge-title { font-size: clamp(2.35rem, 9vw, 4.25rem); }

.plunge-body {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: 1.05rem;
  color: var(--cream-2);
}

.plunge-stats {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 26rem;
}
.plunge-stat {
  border-top: 2px solid var(--red);
  padding-top: 0.8rem;
}
.plunge-stat-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 3.4rem);
  line-height: 0.9;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.plunge-stat-label {
  margin: 0.5rem 0 0;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.plunge-link {
  display: inline-block;
  margin-top: 1.9rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-lit);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.2rem;
}
.plunge-link:hover { border-bottom-color: var(--brass); }

@media (min-width: 900px) {
  .plunge-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: center;
  }
  .plunge-figure img { aspect-ratio: 4 / 5; }
}


/* ==========================================================================
   13. WHAT TO KNOW
   ========================================================================== */

/* Two up, so the four amenities land as a tidy 2x2 instead of 3 + 1 orphan. */
.know-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 720px) {
  .know-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.know-card {
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.know-media { margin: 0; }
.know-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.know-copy { padding: 1.35rem 1.35rem 1.6rem; }
.know-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.know-body {
  margin-top: 0.65rem;
  font-size: 0.94rem;
  color: var(--cream-3);
}

/* The one amenity with no photo becomes a type card instead of a hole. */
.know-card-plain {
  justify-content: center;
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(200, 150, 62, 0.10), transparent 60%),
    var(--ink-3);
  border-color: var(--rule);
}
.know-card-plain .know-copy { padding-block: 2.25rem; }
.know-card-plain .know-title { color: var(--brass-lit); font-size: 1.35rem; }


/* ==========================================================================
   14. GALLERY
   ========================================================================== */

.photos { content-visibility: auto; contain-intrinsic-size: auto 1400px; }

.gallery {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

.gal-figure { margin: 0; }
.gal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--rule-soft);
  filter: saturate(0.94) brightness(0.94);
  transition: filter 0.3s ease, border-color 0.3s ease;
}
.gal-figure:hover .gal-img {
  filter: none;
  border-color: var(--rule);
}
.gal-cap {
  margin-top: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}


/* ==========================================================================
   15. HOURS & LOCATION + MAP FACADE
   ========================================================================== */

.visit { background: var(--ink-deep); }

.visit-grid { display: grid; gap: 2.5rem; }

.visit-sub {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}
.visit-info > .visit-sub:not(:first-child) { margin-top: 2.25rem; }

.hours-list {
  display: grid;
  gap: 0;
  max-width: 30rem;
}
/* base.css gives .hours-row its flex; this paints the ledger lines. */
.hours-row {
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 1rem;
}
.hours-row span:first-child {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.hours-row span:last-child {
  color: var(--cream-2);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.hours-row.is-closed span:last-child { color: var(--cream-3); }

.hours-note {
  margin-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--cream-3);
  max-width: 40ch;
}

.visit-address {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
}
.visit-phone { margin-top: 0.6rem; }
.visit-phone a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--brass-lit);
  text-decoration: none;
}
.visit-phone a:hover { text-decoration: underline; }

.visit-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.visit-map-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--cream-3);
}

/* --- the facade ----------------------------------------------------------- */

.map-facade {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  /* A dark street-grid, drawn in CSS. No tiles are fetched until you ask. */
  background:
    linear-gradient(rgba(200, 150, 62, 0.07) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(200, 150, 62, 0.07) 1px, transparent 1px) 0 0 / 46px 100%,
    radial-gradient(120% 120% at 50% 40%, rgba(200, 150, 62, 0.12), transparent 65%),
    var(--ink-2);
}
.map-facade-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}
.map-facade-address { display: grid; gap: 0.35rem; }
.map-facade-street {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}
.map-facade-city {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.map-facade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.map-facade-directions { border-color: var(--rule); color: var(--brass-lit); }
.map-facade-directions:hover { background: rgba(200, 150, 62, 0.10); border-color: var(--brass); }
.map-facade-play {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.map-facade-play:hover { background: var(--red-lit); border-color: var(--red-lit); }

.map-facade.map-loaded { background: var(--ink-2); }
.map-frame { height: 100%; }

@media (min-width: 900px) {
  .visit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
}


/* ==========================================================================
   16. RATINGS & RECOGNITION
   Real numbers, no invented stars.
   ========================================================================== */

.proof-body { display: grid; gap: 1.5rem; }

.proof-award {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background:
    radial-gradient(110% 160% at 0% 0%, rgba(200, 150, 62, 0.12), transparent 60%),
    var(--ink-2);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.proof-award:hover { border-color: var(--brass); }
.proof-award-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 5.5vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--brass-lit);
}
.proof-award-detail {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-2);
}

.proof-ratings {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.proof-rating-link {
  display: grid;
  gap: 0.3rem;
  height: 100%;
  padding: 1.2rem 1.25rem 1.35rem;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--ink-2);
  transition: border-color 0.2s ease;
}
.proof-rating-link:hover { border-color: var(--rule); }
.proof-platform {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.proof-score {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.proof-count {
  font-size: 0.84rem;
  color: var(--cream-3);
}

.proof-topics {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
}
.proof-topics-kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topic {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--cream-2);
}
.topic:first-child { border-color: var(--rule); }
.topic-count {
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}


/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--rule);
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
  color: var(--cream-3);
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

.footer-mark { width: 190px; height: auto; }
.footer-tagline {
  margin-top: 1.1rem;
  max-width: 24ch;
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.35;
}
.footer-tagline-sub {
  margin-top: 0.45rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.footer-title {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.footer-address {
  font-style: normal;
  line-height: 1.6;
  color: var(--cream-2);
}
.footer-phone {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brass-lit);
  text-decoration: none;
}
.footer-phone:hover { text-decoration: underline; }

.footer-col a { color: var(--cream-2); }
.footer-col a:hover { color: var(--brass-lit); }

.footer-hours .hours-row { font-size: 0.9rem; padding-block: 0.5rem; }
.footer-hours .hours-row span:first-child { font-size: 0.82rem; }

.footer-links { display: grid; gap: 0.55rem; }
.footer-social-note {
  margin-top: 1.1rem;
  font-size: 0.84rem;
  max-width: 32ch;
}

.footer-bottom {
  margin-top: clamp(2.25rem, 6vw, 3.25rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--brass); }
.footer-preview { color: var(--cream-3); }

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 2rem;
  }
  .footer-copy { text-align: right; }
}


/* ==========================================================================
   18. STICKY MOBILE ACTION BAR
   Call and Order, always one thumb away. This is a bar; the phone matters.
   ========================================================================== */

.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-hard);
  border-top: 1px solid var(--rule);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sticky-btn {
  display: grid;
  place-content: center;
  gap: 0.1rem;
  text-align: center;
  min-height: var(--sticky-h);
  padding: 0.55rem 0.5rem;
  text-decoration: none;
}
/* Colours are set per-button rather than with opacity: cream at 75% over the
   red drops to 3.4:1, and this text is small. */
.sticky-kicker {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.sticky-call .sticky-kicker  { color: var(--cream-3); }
.sticky-order .sticky-kicker { color: var(--cream); }
.sticky-main {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sticky-call {
  background: var(--ink-2);
  color: var(--brass-lit);
}
.sticky-order {
  background: var(--red);
  color: var(--cream);
}

@media (min-width: 720px) {
  .sticky-cta { display: none; }
}


/* ==========================================================================
   19. PRINT
   base.css already hides the chrome and flips to black on white. This makes
   the menu itself print like a menu.
   ========================================================================== */

@media print {
  .hero, .now, .plunge, .photos, .proof, .know, .noscript-note {
    display: none !important;
  }
  .menu-nav-wrap, .drinkmenu-nav-wrap { display: none !important; }
  .menu-section-title { border-bottom-color: #000; }
  .menu-item-dots { border-bottom-color: #999; }
  .menu-item, .menu-section { break-inside: avoid; }
  .menu-items { column-count: 2; column-gap: 2rem; }

  /* The drink card prints too — it is a menu, and until now it only existed on
     a piece of paper behind the bar. The photographed pours drop out: they are
     an image block, and every drink in them is named again on the card. */
  .drinks .section-lede, .drinks-sub, .drinks-grid, .drinks-note,
  .drinkmenu-fallback { display: none !important; }
  .drinkmenu {
    padding: 0;
    border: 0;
    background: none !important;
  }
  .drinkmenu-section-title { border-bottom-color: #000; }
  .drinkmenu-item, .drinkmenu-name, .drinkmenu-group-label { break-inside: avoid; }
  .drinkmenu-items { column-count: 2; column-gap: 2rem; }
  .drinkmenu-names { columns: 3; column-gap: 1.5rem; }
}
