/* =========================================================================
   Menu page styles — screen view + dedicated print/PDF stylesheet.

   These pages live at /site/services/menus/<slug>/ and serve two
   purposes:
     1. On-screen: an elegant document-style menu page browsable on web
     2. Print: when a visitor uses File → Print or Print to PDF, the
        nav/footer/CTAs disappear and only the menu document remains —
        clean, single-column, ready to print on Letter or A4.

   v0.5.8 — Editorial refresh. Same content, more refined typography
   and hierarchy:
   - Header eyebrow + dotted divider + italic muted subtitle
   - Multi-tier pricing rendered as a 3-card band (.menu-doc__pricing--tiers)
   - Section eyebrows in warmer rust (#a04e10), tracked, no rule line
   - Items become bold name + italic muted desc on the line below
   - Slim tracked footer bar inside the card
   - Centered "Questions about this menu?" link outside the card

   Print rules:
   - Hide site-header, site-footer, mobile-call-bar, to-top, CTAs
   - Reset background to white
   - Force black text for ink savings
   - Single-column layout on print
   - Page break behavior tuned so categories don't split awkwardly
   ========================================================================= */

/* ---------------- SCREEN STYLES ---------------- */

:root {
  /* Warmer editorial rust used for the v0.5.7+ menu refresh */
  --menu-rust: #a04e10;
  --menu-hairline: rgba(70, 62, 50, 0.16);
  --menu-hairline-soft: rgba(70, 62, 50, 0.10);
}

.menu-page {
  background: var(--wp--preset--color--warm-white);
  min-height: 60vh;
  padding: 64px clamp(20px,5vw,56px) 24px;
}
.menu-page__doc {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 64px clamp(28px,5vw,80px) 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--menu-rust);
  display: flex;
  flex-direction: column;
}

/* Document header — v0.9.58 aligned to the Menu Style Guide.
   Header is a flex column so we can drop a solid rust rule BETWEEN the
   title and lede (via ::after with `order`) without forcing every menu
   page to gain a new wrapper element. */
.menu-doc__header {
  text-align: center;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-doc__wordmark {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 8px;
  order: 1;
}
/* "Banquet & Catering · Est. 1982" tagline under the wordmark.
   Cormorant SC, soft warm grey, very tracked — the same treatment used
   on the printable Style Guide specimen. */
.menu-doc__est {
  font-family: var(--wp--preset--font-family--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9b8e6e;
  margin: 0 0 22px;
  line-height: 1;
  order: 2;
}
.menu-doc__category {
  /* v0.8.2 — Cormorant SC family-label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--menu-rust);
  margin: 0 0 18px;
  line-height: 1;
  order: 3;
}
.menu-doc__title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.06;
  margin: 0 0 18px;
  color: var(--wp--preset--color--text-deep);
  order: 4;
}
/* Solid rust rule between the title and the lede — replaces the prior
   dotted divider. 64pt wide on screen, prints as ink-black. */
.menu-doc__header::after {
  content: "";
  display: block;
  width: 64pt;
  height: 1.5px;
  margin: 0 auto 18px;
  background: var(--menu-rust);
  border-top: 0;
  order: 5;
}
.menu-doc__subtitle {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--wp--preset--color--body-muted);
  max-width: 560px;
  margin: 0 auto;
  order: 6;
}

/* ---------- Pricing band ---------- */
.menu-doc__pricing {
  background: var(--wp--preset--color--warm-1);
  padding: 22px 28px;
  margin: 0 -28px 48px;
  text-align: center;
}
.menu-doc__price {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--menu-rust);
  margin: 0 0 6px;
}
.menu-doc__price-unit {
  /* v0.8.2 — Cormorant SC pricing-unit label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--body-muted);
  margin: 0;
  line-height: 1;
}

/* 3-card tier band (new v0.5.8) — used when a menu has multiple
   price tiers (Lunch / Buffet / Deluxe). Replaces the old vertical
   pricing rows. */
.menu-doc__pricing--tiers {
  background: transparent;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.menu-doc__pricing--tiers.tiers-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-doc__pricing--tiers.tiers-1 { grid-template-columns: minmax(0, 1fr); }
.menu-doc__pricing--tiers.tiers-4,
.menu-doc__pricing--tiers.tiers-5,
.menu-doc__pricing--tiers.tiers-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-doc__price-tier {
  text-align: center;
  padding: 24px 16px 22px;
  border: 1px solid var(--menu-hairline);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}
.menu-doc__price-tier-name {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--wp--preset--color--text-deep);
  margin: 0;
}
.menu-doc__price-tier-amount {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: var(--menu-rust);
  margin: 4px 0 2px;
}
.menu-doc__price-tier-note {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: var(--wp--preset--color--body-muted);
  margin: 0;
}
@media (max-width: 640px) {
  .menu-doc__pricing--tiers,
  .menu-doc__pricing--tiers.tiers-4,
  .menu-doc__pricing--tiers.tiers-5,
  .menu-doc__pricing--tiers.tiers-6 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Menu sections ---------- */
.menu-doc__section {
  margin-bottom: 40px;
  break-inside: avoid-page;
}
.menu-doc__section-name {
  /* v0.8.2 — Cormorant SC menu-section label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--menu-rust);
  text-align: center;
  margin: 0 0 22px;
  padding: 0;
  line-height: 1.2;
  border-bottom: 0;
}

/* Items list */
.menu-doc__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}
.menu-doc__items--single,
.menu-doc__section--included .menu-doc__items {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.menu-doc__item {
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--wp--preset--color--text-deep);
  padding: 6px 0;
  display: block;
  border-bottom: 0;
}
/* Items that DO carry an inline price (add-on entries) keep the
   leader-style flex row. */
.menu-doc__item:has(.menu-doc__item-price) {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px dotted rgba(70, 62, 50, 0.18);
}
/* Bold name on the first line (v0.7.1 — Albert Sans 500, 16px) */
.menu-doc__item > span:not(.menu-doc__item-price):not(.menu-doc__item-desc),
.menu-doc__item-name {
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: var(--wp--preset--color--text-deep);
  display: block;
}
/* Italic muted description on a new line below (v0.7.1 — Albert Sans italic) */
.menu-doc__item-desc {
  font-family: var(--wp--preset--font-family--body);
  font-style: italic;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--wp--preset--color--body-muted);
  display: block;
  margin-top: 2px;
}
.menu-doc__item-price {
  font-family: var(--wp--preset--font-family--body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--menu-rust);
  flex: 0 0 auto;
  white-space: nowrap;
}
.menu-doc__section-note {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--wp--preset--color--body-muted);
  margin: 18px 0 0;
  text-align: center;
}
@media (max-width: 560px) {
  .menu-doc__items { grid-template-columns: 1fr; }
}

/* Footer notes */
.menu-doc__footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--menu-hairline);
  text-align: center;
}
.menu-doc__footer p {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--wp--preset--color--body-muted);
  margin: 0 0 8px;
}
.menu-doc__footer .menu-doc__contact {
  /* v0.8.2 — Cormorant SC contact label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--text-deep);
  margin-top: 22px;
}
.menu-doc__updated {
  /* v0.8.2 — Cormorant SC fine-print label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--body-very-muted);
  margin-top: 10px;
}

/* Slim tracked footer bar inside the card (v0.5.8) */
.menu-doc__slim-foot {
  /* v0.8.2 — Cormorant SC slim footer-bar label per Joy's spec. */
  margin: 36px clamp(-80px, -5vw, -28px) 0;
  padding: 18px clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--menu-hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--wp--preset--font-family--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--body-muted);
}
.menu-doc__slim-foot span:last-child {
  color: var(--menu-rust);
}

/* "Questions about this menu?" link OUTSIDE the doc card (v0.5.8) */
.menu-doc__after {
  text-align: center;
  margin: 28px auto 0;
  max-width: 760px;
  padding: 0 clamp(20px,5vw,56px);
}
.menu-doc__after-link {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--menu-rust);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
  padding-bottom: 2px;
}
.menu-doc__after-link:hover,
.menu-doc__after-link:focus-visible {
  border-bottom-color: var(--menu-rust);
  color: var(--menu-rust);
}
.menu-doc__after-link span[aria-hidden="true"] {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}
.menu-doc__after-link:hover span[aria-hidden="true"],
.menu-doc__after-link:focus-visible span[aria-hidden="true"] {
  transform: translateX(4px);
}

/* Print action bar (screen only — hidden in print).
   margin-top creates breathing room below the fixed site-header on
   standalone menu pages. Safe because the menus-viewer fetch+inject
   strips .menu-doc__actions before showing the menu inline — so this
   space only renders on the standalone page where it's needed. */
.menu-doc__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 56px auto 36px;
  max-width: 760px;
  flex-wrap: wrap;
}
.menu-doc__actions .btn {
  padding: 12px 22px;
  font-size: 13px;
}

/* =========================================================================
   v0.9.87 — Menu visual refresh (screen). Scoped to .menu-page so the
   event-flyer (which reuses .menu-doc__* classes) is untouched. Turns the
   floating item lists into ruled rows, makes section labels read as
   designed dividers (flanking hairlines), and beads a small rust diamond
   on the header rule. Print rules below still win via @media print.
   ========================================================================= */

/* Section labels → centred small-caps flanked by fading hairlines */
.menu-page .menu-doc__section-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  letter-spacing: 0.26em;
}
.menu-page .menu-doc__section-name::before,
.menu-page .menu-doc__section-name::after {
  content: "";
  flex: 1 1 auto;
  max-width: 84px;
  height: 1px;
}
.menu-page .menu-doc__section-name::before { background: linear-gradient(to right, transparent, var(--menu-hairline)); }
.menu-page .menu-doc__section-name::after  { background: linear-gradient(to left,  transparent, var(--menu-hairline)); }

/* Header rule → a small rust diamond centred on a soft hairline */
.menu-page .menu-doc__header::after {
  content: "\25C6";
  width: min(240px, 62%);
  height: auto;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--menu-rust);
  font-size: 9px;
  background: linear-gradient(var(--menu-hairline), var(--menu-hairline)) center / 100% 1px no-repeat;
}

/* Item lists → quietly ruled rows instead of floating text */
.menu-page .menu-doc__items { gap: 0 44px; }
.menu-page .menu-doc__item:not(:has(.menu-doc__item-price)) {
  padding: 11px 4px;
  border-bottom: 1px solid var(--menu-hairline-soft);
}
/* Centred "included"/single-column lists stay clean — no rules */
.menu-page .menu-doc__items--single .menu-doc__item,
.menu-page .menu-doc__section--included .menu-doc__item {
  border-bottom: 0;
  padding: 7px 0;
}

/* ---------------- PRINT STYLES ---------------- */
@media print {
  /* Hide all site chrome — only the menu document prints */
  .site-header,
  .site-footer,
  .mobile-call-bar,
  .to-top,
  .skip-link,
  .menu-doc__actions,
  .menu-doc__after,
  [data-reveal] { display: none !important; opacity: 1 !important; transform: none !important; }

  /* Reset page */
  html, body {
    background: #fff !important;
    color: #000 !important;
    margin: 0; padding: 0;
    font-size: 11pt;
    line-height: 1.45;
  }
  body { padding-bottom: 0 !important; }

  /* Menu page wrapper */
  .menu-page {
    background: #fff !important;
    padding: 0 !important;
    min-height: 0;
  }
  .menu-page__doc {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-top: 0 !important;
    background: #fff !important;
  }

  /* Document chrome */
  .menu-doc__wordmark {
    height: 44px;
    /* If logo is white-on-dark variant, force visibility */
    filter: none !important;
  }
  .menu-doc__header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #000;
  }
  /* Keep the solid rule in print, but render it in ink-black so it
     doesn't survive as rust on a B&W proof. */
  .menu-doc__header::after {
    display: block !important;
    background: #1a1a1a !important;
    width: 60pt;
    height: 1pt;
    margin: 0 auto 12pt;
  }
  .menu-doc__est {
    color: #595959 !important;
    font-size: 8.5pt;
    margin-bottom: 14pt;
  }
  .menu-doc__category {
    color: #000 !important;
    letter-spacing: 0.25em;
    font-size: 10pt;
  }
  .menu-doc__title {
    color: #000 !important;
    font-size: 22pt;
  }
  .menu-doc__subtitle {
    color: #000 !important;
    font-size: 11pt;
  }

  /* Pricing band — keep visible, simpler styling for print */
  .menu-doc__pricing {
    background: #f5f1ea !important;
    margin: 0 0 24px !important;
    padding: 14px 18px !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .menu-doc__price {
    color: #000 !important;
    font-size: 20pt;
  }
  .menu-doc__price-unit {
    color: #000 !important;
    font-size: 9pt;
  }

  /* Tier-card pricing in print: collapse to compact 3-up,
     no card backgrounds. */
  .menu-doc__pricing--tiers {
    background: transparent !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .menu-doc__pricing--tiers.tiers-1 { grid-template-columns: 1fr !important; }
  .menu-doc__pricing--tiers.tiers-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .menu-doc__price-tier {
    border: 1px solid #000 !important;
    background: #fff !important;
    padding: 10px 8px !important;
  }
  .menu-doc__price-tier-name { color: #000 !important; font-size: 9.5pt; }
  .menu-doc__price-tier-amount { color: #000 !important; font-size: 16pt; }
  .menu-doc__price-tier-note { color: #000 !important; font-size: 8.5pt; }

  /* Sections */
  .menu-doc__section {
    margin-bottom: 22px;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .menu-doc__section-name {
    color: #000 !important;
    border-bottom: 1px solid #000 !important;
    font-size: 10pt;
    letter-spacing: 0.22em;
    margin: 0 0 14px;
    padding-bottom: 6px;
  }
  .menu-doc__items {
    grid-template-columns: 1fr 1fr;
    gap: 4px 32px;
  }
  .menu-doc__item {
    color: #000 !important;
    font-size: 11pt;
    border-bottom-color: rgba(0,0,0,0.18) !important;
    padding: 4px 0;
    page-break-inside: avoid;
  }
  .menu-doc__item > span:not(.menu-doc__item-price):not(.menu-doc__item-desc),
  .menu-doc__item-name { color: #000 !important; font-size: 10.5pt; font-weight: 600; }
  .menu-doc__item-desc { color: #000 !important; font-size: 9.5pt; }
  .menu-doc__item-price {
    color: #000 !important;
    font-size: 9.5pt;
  }
  .menu-doc__section-note {
    color: #000 !important;
    font-size: 10pt;
  }

  /* Footer */
  .menu-doc__footer {
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid #000;
  }
  .menu-doc__footer p { color: #000 !important; font-size: 10pt; }
  .menu-doc__contact { color: #000 !important; font-size: 9.5pt; }
  .menu-doc__updated { color: #000 !important; font-size: 8.5pt; }
  .menu-doc__slim-foot { display: none !important; }

  /* Page margins + print page numbering */
  @page {
    size: letter;
    margin: 0.6in 0.7in;
  }
  @page :first {
    margin-top: 0.6in;
  }

  /* ---- Event flyer print isolation ----
     When an .event-flyer exists on the page, print ONLY the flyer
     document — no nav, no hero, no FAQ, no other sections, no blank
     page 1.

     We can't use `display:none` on sibling sections because the WP
     importer wraps content in <div class="wp-block-html">, so
     `main > section` doesn't reach them — they sit deeper in the
     tree. Display:none on the wrapper would also hide the flyer.

     Solution: visibility:hidden on everything in <body>, then
     visibility:visible on the flyer + its descendants. Absolute-
     position the flyer at top-left so the visibility:hidden ghost
     elements don't push it down to page 2. */
  body:has(.event-flyer) body * {
    visibility: hidden !important;
  }
  body:has(.event-flyer) .event-flyer,
  body:has(.event-flyer) .event-flyer * {
    visibility: visible !important;
  }
  body:has(.event-flyer) .event-flyer {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* The actions bar inside the flyer (Print / Save as PDF buttons)
     should still NOT print — already covered by .menu-doc__actions
     in the global hide list above, but the visibility:visible above
     re-shows it. Force-hide it again here. */
  body:has(.event-flyer) .menu-doc__actions,
  body:has(.event-flyer) .menu-doc__actions * {
    visibility: hidden !important;
    display: none !important;
  }
}

/* ============================================================
   EVENT FLYER — screen + print refinements
   The flyer reuses .menu-page / .menu-page__doc / .menu-doc__*
   from above. These are small additions for flyer-specific
   patterns: multi-tier pricing, two-column seating schedule,
   italic notes paragraph.
   ============================================================ */

/* Multi-row pricing tier grid (used by Easter / Mother's Day) */
.event-flyer__page .menu-doc__pricing--tiers {
  text-align: left;
  padding: 22px 28px 14px;
}
.event-flyer__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 36px;
  margin: 0 auto;
  max-width: 560px;
}
.event-flyer__tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(70, 62, 50, 0.22);
}
.event-flyer__tier:last-child,
.event-flyer__tier:nth-last-child(2) {
  border-bottom: 0;
}
.event-flyer__tier-label {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.3;
  color: var(--wp--preset--color--text-deep);
}
.event-flyer__tier-price {
  /* v0.8.2 — pricing displays use editorial italic Cormorant per Joy's spec. */
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--wp--preset--color--rust);
  flex: 0 0 auto;
}
.event-flyer__pricing-foot {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  color: var(--wp--preset--color--body-muted);
  margin: 14px 0 0;
}

/* Single-headline pricing (NYE) */
.event-flyer__page .menu-doc__pricing--single {
  text-align: center;
}
.event-flyer__price-head {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 300;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--wp--preset--color--rust);
  margin: 0 0 8px;
}
.event-flyer__price-sub {
  /* v0.8.2 — Cormorant SC pricing-unit label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--text-deep);
  margin: 0;
}
.event-flyer__price-foot {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14px;
  color: var(--wp--preset--color--body-muted);
  margin: 10px 0 0;
}

/* Seating times — two-column grid (Easter / Mother's Day) */
.event-flyer__seating-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin: 0 auto;
  max-width: 620px;
}
.event-flyer__seating-block {
  text-align: center;
}
.event-flyer__seating-label {
  /* v0.8.2 — Cormorant SC tag/label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--rust);
  margin: 0 0 8px;
  line-height: 1.2;
}
.event-flyer__seating-times-list {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--wp--preset--color--text-deep);
  margin: 0;
}
@media (max-width: 560px) {
  .event-flyer__seating-times { grid-template-columns: 1fr; }
  .event-flyer__tiers { grid-template-columns: 1fr; }
}

/* Italic notes paragraph */
.event-flyer__notes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 540px;
}
.event-flyer__notes li {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--wp--preset--color--body-muted);
  padding: 5px 0;
  text-align: center;
}

/* Schedule rows (NYE) */
.event-flyer__schedule {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 480px;
}
.event-flyer__schedule li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(70, 62, 50, 0.22);
  align-items: baseline;
}
.event-flyer__schedule-time {
  /* v0.8.2 — Cormorant SC time-label per Joy's spec. */
  font-family: var(--wp--preset--font-family--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--rust);
}
.event-flyer__schedule-what {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 17px;
  color: var(--wp--preset--color--text-deep);
}

/* Print refinements specific to event flyer */
@media print {
  .event-flyer__tier-label,
  .event-flyer__tier-price,
  .event-flyer__pricing-foot,
  .event-flyer__price-head,
  .event-flyer__price-sub,
  .event-flyer__price-foot,
  .event-flyer__seating-label,
  .event-flyer__seating-times-list,
  .event-flyer__notes li,
  .event-flyer__schedule-time,
  .event-flyer__schedule-what {
    color: #000 !important;
  }
  .event-flyer__price-head { font-size: 22pt; }
  .event-flyer__price-sub { font-size: 9pt; }
  .event-flyer__tier-label { font-size: 10.5pt; }
  .event-flyer__tier-price { font-size: 10pt; }
  .event-flyer__pricing-foot { font-size: 9.5pt; }
  .event-flyer__seating-times-list { font-size: 11pt; }
  .event-flyer__seating-label { font-size: 9pt; }
  .event-flyer__notes li { font-size: 10pt; padding: 3px 0; }
  .event-flyer__schedule li { padding: 4px 0; }
  .event-flyer__schedule-time { font-size: 9pt; }
  .event-flyer__schedule-what { font-size: 10.5pt; }
  .event-flyer__tier { border-bottom-color: rgba(0, 0, 0, 0.2) !important; }
  .event-flyer__schedule li { border-bottom-color: rgba(0, 0, 0, 0.2) !important; }
}
