/* Midtown Pizzeria & Pub — Bill of Fare
 * Print-ready menu styles. 4-page US Letter portrait.
 * https://github.com/mastellar/midtown-pizza-menu
 */

/* =========================================================================
   MIDTOWN PIZZERIA & PUB — PRINTABLE MENU
   4-page US Letter portrait: Cover, Inside Pizzas, Inside Pub Food, Calendar
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=League+Spartan:wght@400;600;700;800;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Pacifico&family=Lobster&family=Yellowtail&family=Allura&family=Dancing+Script:wght@500;600;700&family=Great+Vibes&family=IBM+Plex+Mono:wght@500;700&display=swap');

:root {
  --barn-red: #7C0A01;
  --bean: #3D0C01;
  --chinese-gold: #CC9901;
  --goldenrod: #DAA520;
  --black-chocolate: #1B1811;
  --warm-cream: #F4E6C3;
  --warm-cream-deep: #ECDAB1;
  --tabletop-brown: #5D4432;
  --paper: #F4E6C3;
  --paper-shadow: rgba(27, 24, 17, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #2a2018;
  color: var(--black-chocolate);
  font-family: 'Libre Baskerville', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ============== PAGE FRAME ============== */
.page {
  width: 8.5in;
  height: 11in;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(0, 0, 0, 0.3);
  page-break-after: always;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(204, 153, 1, 0.05), transparent 60%),
    radial-gradient(ellipse at 90% 90%, rgba(124, 10, 1, 0.04), transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(93, 68, 50, 0.018) 0px,
      rgba(93, 68, 50, 0.018) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(93, 68, 50, 0.018) 0px,
      rgba(93, 68, 50, 0.018) 1px,
      transparent 1px,
      transparent 3px
    );
}

.page:last-child { page-break-after: auto; }

/* ============== OUTER RED FRAME ============== */
.frame {
  position: absolute;
  inset: 0.28in;
  border: 0.18in solid var(--barn-red);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 4px var(--paper),
    inset 0 0 0 5px var(--chinese-gold),
    inset 0 0 0 9px var(--paper),
    inset 0 0 0 10px var(--barn-red);
}

.frame::before {
  content: "";
  position: absolute;
  inset: -0.06in;
  border: 1px solid var(--bean);
  border-radius: 4px;
  pointer-events: none;
}

.canvas {
  position: absolute;
  inset: 0.5in;
  padding: 0.18in 0.22in;
  display: flex;
  flex-direction: column;
}

/* ============== TYPOGRAPHY ============== */
.script {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.cat-label {
  font-family: 'League Spartan', 'Archivo Black', sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.serif { font-family: 'Libre Baskerville', Georgia, serif; }

.mono-price {
  font-family: 'IBM Plex Mono', 'Menlo', monospace;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ============== COVER PAGE — RED CROW STRUCTURE ============== */
.cover .canvas {
  padding: 0;
  inset: 0.5in;
}

/* Top horizontal banner across cover */
.cover-top-bar {
  background: var(--barn-red);
  color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.06in 0.18in;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 8pt;
  text-transform: uppercase;
  border-bottom: 1px solid var(--chinese-gold);
}
.cover-top-bar .center {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 8pt;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.92;
}

/* Main 3-column grid */
.cover-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 1.05fr;
  gap: 0;
  flex: 1;
  position: relative;
  min-width: 0;
}
.cover-col {
  display: flex;
  flex-direction: column;
  padding: 0.14in 0.12in;
  border-right: 1px solid rgba(124, 10, 1, 0.35);
  min-width: 0;
  overflow: hidden;
}
.cover-col:last-child { border-right: none; }

/* Middle column — brand anchor, centered, wider for the elegant script */
.cover-col-center {
  align-items: center;
  text-align: center;
  padding: 0.18in 0.1in;
  background:
    radial-gradient(ellipse at center top, rgba(204, 153, 1, 0.04), transparent 70%);
  overflow: visible;
}

/* MIDDLE COLUMN — Brand emblem and brand identity */
.cover-emblem {
  text-align: center;
  margin: 0.04in 0 0.14in 0;
  width: 100%;
}

.cover-logo-frame {
  position: relative;
  padding: 0.06in 0.04in 0.04in 0.04in;
  background: radial-gradient(ellipse at center, rgba(244, 230, 195, 0.85), rgba(244, 230, 195, 0));
}

.cover-logo {
  width: 95%;
  max-width: 2.6in;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(27, 24, 17, 0.22));
}

.brand-callout {
  text-align: center;
  margin: 0.08in 0 0.12in 0;
  width: 100%;
  overflow: visible;
}
.brand-callout .promise {
  font-family: 'Allura', 'Dancing Script', cursive;
  color: var(--barn-red);
  font-size: 40pt;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(204, 153, 1, 0.22);
  display: block;
}
.brand-callout .promise .line1 {
  display: block;
  white-space: nowrap;
}
.brand-callout .promise .line2 {
  display: block;
  margin-top: -0.04in;
}
.brand-callout .combo-num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--barn-red);
  font-size: 32pt;
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  margin-top: 0.12in;
}
.brand-callout .combo-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 9pt;
  letter-spacing: 0.18em;
  color: var(--bean);
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.brand-callout .combo-tag {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 8pt;
  color: var(--tabletop-brown);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.cover-col-center .cover-box {
  width: 100%;
  margin-top: 0.12in;
  margin-bottom: 0.06in;
}

.heart-strip {
  text-align: center;
  margin-top: auto;
  padding: 0.1in 0.1in 0;
  border-top: 1px solid rgba(204, 153, 1, 0.6);
  width: 100%;
}
.heart-strip .line {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 9pt;
  color: var(--barn-red);
  text-transform: uppercase;
  line-height: 1.35;
}
.heart-strip .city {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 9.5pt;
  color: var(--tabletop-brown);
  margin-top: 4px;
}

/* Cover category bar (slimmer than menu pages) */
.cover-cat-bar {
  background: var(--barn-red);
  color: var(--warm-cream);
  text-align: center;
  padding: 0.038in 0.08in 0.034in 0.08in;
  margin-bottom: 0.06in;
  border-radius: 2px;
  border-top: 1px solid var(--chinese-gold);
  border-bottom: 1px solid var(--chinese-gold);
}
.cover-cat-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11pt;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}

.cover-pour-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.02in;
  margin: 0.02in 0 0.06in 0;
  padding: 0.04in 0;
  border-bottom: 1px dotted rgba(124, 10, 1, 0.35);
}
.cover-pour {
  text-align: center;
}
.cover-pour .label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 7.4pt;
  color: var(--bean);
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
}
.cover-pour .price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--barn-red);
  font-size: 10pt;
  display: block;
  letter-spacing: 0.01em;
}

.bev-list { margin: 0.02in 0; }
.bev {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0 0.08in;
  padding: 0.022in 0;
  border-bottom: 1px dotted rgba(93, 68, 50, 0.28);
}
.bev:last-child { border-bottom: none; }
.bev-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 8.6pt;
  letter-spacing: 0.04em;
  color: var(--bean);
  text-transform: uppercase;
  line-height: 1.2;
}
.bev-meta {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7.2pt;
  color: var(--tabletop-brown);
  grid-column: 1;
  line-height: 1.25;
}
.bev-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--barn-red);
  font-size: 9pt;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.bev-price-pair {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  color: var(--barn-red);
  font-size: 8.4pt;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.bev-price-pair .sm {
  font-size: 7pt;
  color: var(--tabletop-brown);
  font-weight: 500;
  margin-right: 1px;
}

.bev-subhead {
  font-family: 'Archivo Black', sans-serif;
  font-size: 8.6pt;
  letter-spacing: 0.18em;
  color: var(--bean);
  text-transform: uppercase;
  margin: 0.06in 0 0.02in 0;
  padding-bottom: 1.5px;
  border-bottom: 1px solid var(--chinese-gold);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.bev-subhead .glass-bottle {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 7pt;
  letter-spacing: 0.16em;
  color: var(--tabletop-brown);
}

/* Compact info box (Hours / Signatures / Brand) */
.cover-box {
  margin-top: 0.1in;
  border: 2px solid var(--barn-red);
  background:
    linear-gradient(180deg, rgba(244, 230, 195, 0.95), rgba(236, 218, 177, 0.92));
  border-radius: 3px;
  padding: 0.08in 0.1in;
  position: relative;
}
.cover-box::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px dotted var(--chinese-gold);
  pointer-events: none;
  border-radius: 2px;
}
.cover-box-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 9.6pt;
  letter-spacing: 0.16em;
  color: var(--barn-red);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.04in 0;
  padding-bottom: 3px;
  border-bottom: 1px dotted rgba(124, 10, 1, 0.5);
}
.cover-box-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 8pt;
  color: var(--bean);
  line-height: 1.4;
}
.cover-box-body .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(93, 68, 50, 0.25);
  padding: 1.5px 0;
}
.cover-box-body .row:last-child { border-bottom: none; }
.cover-box-body .row b {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 7.6pt;
  color: var(--bean);
  text-transform: uppercase;
}

/* Bottom strip on cover */
.cover-bottom-bar {
  background: var(--bean);
  color: var(--warm-cream);
  text-align: center;
  padding: 0.06in 0.16in;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.32em;
  font-size: 8pt;
  text-transform: uppercase;
  border-top: 1px solid var(--chinese-gold);
}

/* Side rotated note (Red Crow has "0% service charge" text rotated) */
.cover-side-note {
  position: absolute;
  right: 0.05in;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7.2pt;
  color: var(--tabletop-brown);
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0.7;
}

/* Filler disclaimer footer */
.cover-disclaimer {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 6.8pt;
  color: var(--tabletop-brown);
  text-align: center;
  padding: 0.02in 0.16in;
  background: rgba(204, 153, 1, 0.06);
  border-top: 1px dotted rgba(124, 10, 1, 0.4);
  letter-spacing: 0.02em;
}

/* ============== INTERIOR PAGES ============== */
.inside .canvas {
  padding: 0.18in 0.22in;
}

.page-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.08in;
  margin-bottom: 0.1in;
  border-bottom: 1.5px solid var(--barn-red);
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  border-bottom: 1px dotted var(--chinese-gold);
}
.page-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22pt;
  letter-spacing: 0.04em;
  color: var(--barn-red);
  margin: 0;
  text-transform: uppercase;
}
.page-banner-tag {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 10pt;
  color: var(--tabletop-brown);
  text-align: right;
}
.page-banner-tag b {
  font-family: 'League Spartan', sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--barn-red);
  letter-spacing: 0.16em;
  display: block;
  font-size: 9pt;
  margin-bottom: 2px;
}

/* ============== CATEGORY BLOCKS ============== */
.cat-block {
  margin-bottom: 0.1in;
  break-inside: avoid;
}

.cat-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.04in 0.12in 0.035in 0.12in;
  margin-bottom: 0.04in;
  position: relative;
  color: var(--warm-cream);
  background: var(--barn-red);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 1px 0 0 var(--chinese-gold);
}
.cat-bar.gold {
  background: var(--chinese-gold);
  color: var(--bean);
}
.cat-bar.gold .cat-bar-title { color: var(--bean); }
.cat-bar.brown {
  background: var(--tabletop-brown);
  color: var(--warm-cream);
}
.cat-bar.bean {
  background: var(--bean);
  color: var(--warm-cream);
}

.cat-bar-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12pt;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}
.cat-bar-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7.8pt;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.cat-bar.gold .cat-bar-sub { opacity: 0.78; }

/* Items (single-column layout for menu rows) */
.item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0 0.1in;
  padding: 0.028in 0;
  break-inside: avoid;
  border-bottom: 1px dotted rgba(124, 10, 1, 0.22);
}
.item:last-child { border-bottom: none; }
.item-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 9.6pt;
  letter-spacing: 0.03em;
  color: var(--bean);
  text-transform: uppercase;
  line-height: 1.15;
}
.item-desc {
  grid-column: 1;
  font-family: 'Libre Baskerville', serif;
  font-size: 7.6pt;
  font-style: italic;
  color: var(--tabletop-brown);
  line-height: 1.28;
  margin-top: 1px;
}
.item-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 9.2pt;
  color: var(--barn-red);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-align: right;
}
.item-price .each { font-size: 7.5pt; color: var(--tabletop-brown); font-weight: 500; }

/* Pizza items have 3-tier price block */
.item.pizza {
  grid-template-columns: 1fr auto;
  padding: 0.04in 0 0.05in 0;
}
.item.pizza .item-prices {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: flex;
  gap: 0.14in;
}
.tier {
  text-align: center;
  min-width: 0.55in;
}
.tier-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 6.8pt;
  color: var(--tabletop-brown);
  text-transform: uppercase;
  display: block;
}
.tier-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 9.6pt;
  color: var(--barn-red);
  display: block;
  letter-spacing: 0.01em;
}

.section-note {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 8pt;
  color: var(--tabletop-brown);
  text-align: center;
  margin: 0.06in 0 0 0;
  padding: 0.04in 0.1in;
  border-top: 1px dotted var(--chinese-gold);
  border-bottom: 1px dotted var(--chinese-gold);
  background: rgba(204, 153, 1, 0.08);
}

.section-note.compact { padding: 0.02in 0.08in; font-size: 7.6pt; }

/* Two-column body for some pages */
.body-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.2in;
  flex: 1;
  align-content: start;
}
.body-2col > .col { display: flex; flex-direction: column; }

/* Highlight callouts inside content */
.callout-strip {
  background: var(--bean);
  color: var(--warm-cream);
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  font-size: 8pt;
  padding: 0.05in 0.1in;
  margin: 0.06in 0 0 0;
  border-top: 2px solid var(--chinese-gold);
  border-bottom: 2px solid var(--chinese-gold);
}

.lunch-box {
  margin-top: 0.1in;
  border: 2px solid var(--barn-red);
  background:
    linear-gradient(180deg, rgba(244, 230, 195, 0.96), rgba(244, 230, 195, 0.84));
  padding: 0.1in 0.14in;
  position: relative;
  border-radius: 3px;
}
.lunch-box::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px dotted var(--chinese-gold);
  pointer-events: none;
  border-radius: 2px;
}
.lunch-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14pt;
  letter-spacing: 0.1em;
  color: var(--barn-red);
  text-transform: uppercase;
  margin: 0 0 0.02in 0;
}
.lunch-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 9pt;
  color: var(--tabletop-brown);
  margin-bottom: 0.06in;
}
.lunch-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22pt;
  color: var(--barn-red);
  letter-spacing: 0.02em;
}
.lunch-list {
  list-style: none;
  padding: 0;
  margin: 0.02in 0 0.04in 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 9.5pt;
  color: var(--bean);
  letter-spacing: 0.02em;
}
.lunch-list li {
  padding: 0.018in 0;
  border-bottom: 1px dotted rgba(93, 68, 50, 0.4);
}
.lunch-list li:last-child { border-bottom: none; }
.lunch-foot {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 8.5pt;
  color: var(--tabletop-brown);
  text-align: center;
  margin-top: 0.06in;
}

/* Sauce/topping list compact pill rows */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 5px;
  padding: 0.03in 0.02in 0.02in 0.02in;
}
.tag {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 7.2pt;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bean);
  background: rgba(204, 153, 1, 0.18);
  border: 1px solid rgba(204, 153, 1, 0.55);
  border-radius: 999px;
  padding: 1px 7px;
  white-space: nowrap;
}
.tag.dry { background: rgba(124, 10, 1, 0.1); border-color: rgba(124, 10, 1, 0.4); color: var(--barn-red); }
.tag.wet { background: rgba(124, 10, 1, 0.18); border-color: rgba(124, 10, 1, 0.55); color: var(--barn-red); }
.tag.new::after {
  content: "NEW";
  font-size: 6pt;
  margin-left: 5px;
  background: var(--barn-red);
  color: var(--warm-cream);
  padding: 0 4px;
  border-radius: 8px;
  vertical-align: middle;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.sauce-key {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7pt;
  color: var(--tabletop-brown);
  text-align: center;
  margin: 0.02in 0;
  letter-spacing: 0.04em;
}

/* Add-on row */
.addons {
  display: flex;
  justify-content: space-between;
  gap: 0.12in;
  padding: 0.035in 0.04in;
  margin-top: 0.03in;
  background: rgba(204, 153, 1, 0.1);
  border-top: 1px dotted var(--chinese-gold);
  border-bottom: 1px dotted var(--chinese-gold);
}
.addon {
  flex: 1;
  text-align: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 7.8pt;
  letter-spacing: 0.04em;
  color: var(--bean);
  text-transform: uppercase;
  line-height: 1.15;
}
.addon b {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.8pt;
  color: var(--barn-red);
  letter-spacing: 0.01em;
}

/* Salad bar feature */
.salad-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.06in;
  padding: 0.025in 0;
}
.salad-tier {
  text-align: center;
  padding: 0.045in 0.04in;
  background: rgba(204, 153, 1, 0.16);
  border: 1px solid rgba(204, 153, 1, 0.55);
  border-radius: 3px;
}
.salad-tier .label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 7.6pt;
  color: var(--bean);
  text-transform: uppercase;
}
.salad-tier .price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12pt;
  color: var(--barn-red);
  display: block;
  margin-top: 1px;
  letter-spacing: 0.01em;
  line-height: 1;
}

/* Bucket meals subsection inside Pasta */
.subhead {
  font-family: 'Archivo Black', sans-serif;
  font-size: 8.8pt;
  letter-spacing: 0.16em;
  color: var(--bean);
  text-transform: uppercase;
  margin: 0.04in 0 0.02in 0;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--chinese-gold);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.subhead .sub-tag {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 7.4pt;
  color: var(--tabletop-brown);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Drinks compact line */
.drinks-line {
  font-family: 'Libre Baskerville', serif;
  font-size: 7.6pt;
  color: var(--bean);
  text-align: center;
  padding: 0.03in 0.06in;
  line-height: 1.42;
  background: rgba(124, 10, 1, 0.06);
  border: 1px dotted rgba(124, 10, 1, 0.35);
  border-radius: 3px;
  margin-top: 0.04in;
}
.drinks-line b {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--barn-red);
}

/* Featured Fresh Salad Bar banner across bottom of pub-food page */
.salad-feature {
  margin-top: 0.08in;
  background:
    linear-gradient(180deg, rgba(61, 12, 1, 0.97), rgba(27, 24, 17, 0.97));
  color: var(--warm-cream);
  border: 2px solid var(--chinese-gold);
  border-radius: 3px;
  padding: 0.1in 0.16in 0.1in 0.16in;
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  align-items: center;
  gap: 0.16in;
  position: relative;
}
.salad-feature::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(204, 153, 1, 0.5);
  pointer-events: none;
  border-radius: 2px;
}
.salad-feature-head {
  border-right: 1px dashed rgba(204, 153, 1, 0.55);
  padding-right: 0.16in;
}
.salad-feature-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14pt;
  letter-spacing: 0.1em;
  color: var(--chinese-gold);
  text-transform: uppercase;
  line-height: 1;
}
.salad-feature-tag {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7.8pt;
  color: rgba(244, 230, 195, 0.85);
  margin-top: 4px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.salad-feature-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1in;
}
.salad-feature-tier {
  text-align: center;
  padding: 0.045in 0.06in;
  background: rgba(204, 153, 1, 0.16);
  border: 1px solid rgba(204, 153, 1, 0.7);
  border-radius: 3px;
}
.salad-feature-tier .label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 8pt;
  color: var(--chinese-gold);
  text-transform: uppercase;
  display: block;
}
.salad-feature-tier .price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16pt;
  color: var(--warm-cream);
  display: block;
  margin-top: 1px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Tiny logo header on interior pages */
.mini-seal {
  width: 0.7in;
  height: 0.7in;
  flex-shrink: 0;
}

/* ============== CALENDAR PAGE ============== */
.calendar .canvas {
  padding: 0.2in 0.26in;
}

.cal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2.5px solid var(--barn-red);
  padding-bottom: 0.08in;
  margin-bottom: 0.16in;
  position: relative;
}
.cal-header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  border-bottom: 1px dotted var(--chinese-gold);
}

.cal-month {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32pt;
  letter-spacing: 0.04em;
  color: var(--barn-red);
  text-transform: uppercase;
  margin: 0;
  line-height: 0.95;
}
.cal-month-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--tabletop-brown);
  font-size: 11pt;
  margin-top: 2px;
}
.cal-tagline {
  text-align: right;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 9pt;
  letter-spacing: 0.18em;
  color: var(--bean);
  text-transform: uppercase;
  line-height: 1.4;
}
.cal-tagline span {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 8.4pt;
  color: var(--tabletop-brown);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 2px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1.5px solid var(--barn-red);
  background: rgba(204, 153, 1, 0.08);
}
.cal-dow {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 9pt;
  color: var(--warm-cream);
  background: var(--barn-red);
  text-align: center;
  padding: 0.06in 0;
  text-transform: uppercase;
  border-right: 1px solid rgba(244, 230, 195, 0.3);
}
.cal-dow:last-child { border-right: none; }

.cal-cell {
  background: var(--paper);
  border-right: 1px solid rgba(124, 10, 1, 0.25);
  border-bottom: 1px solid rgba(124, 10, 1, 0.25);
  padding: 0.07in 0.07in 0.06in 0.07in;
  min-height: 1.05in;
  position: relative;
}
.cal-cell:nth-child(7n+7) { border-right: none; }
.cal-cell.empty {
  background: rgba(93, 68, 50, 0.08);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 6px,
      rgba(93, 68, 50, 0.06) 6px,
      rgba(93, 68, 50, 0.06) 7px
    );
}
.cal-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13pt;
  color: var(--bean);
  letter-spacing: 0.02em;
  line-height: 1;
}
.cal-num.weekend { color: var(--barn-red); }
.cal-num.today {
  color: var(--warm-cream);
  background: var(--barn-red);
  display: inline-block;
  padding: 2px 7px 1px 7px;
  border-radius: 999px;
}
.cal-event {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 7pt;
  color: var(--tabletop-brown);
  margin-top: 4px;
  line-height: 1.2;
}
.cal-cell.note-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cal-cell.note-cell .cal-event {
  font-style: italic;
  margin-top: 0;
  color: var(--barn-red);
  font-size: 7.4pt;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Calendar bottom strip */
.cal-bottom {
  margin-top: 0.18in;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.18in;
  flex: 1;
}
.cal-callouts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.14in 0.16in;
  background: var(--bean);
  color: var(--warm-cream);
  border: 1.5px solid var(--chinese-gold);
  border-radius: 3px;
  position: relative;
}
.cal-callouts::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(204, 153, 1, 0.55);
  pointer-events: none;
  border-radius: 2px;
}
.cal-callouts h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11pt;
  letter-spacing: 0.16em;
  color: var(--chinese-gold);
  text-transform: uppercase;
  margin: 0 0 0.06in 0;
}
.cal-callouts p {
  font-family: 'Libre Baskerville', serif;
  font-size: 9.2pt;
  line-height: 1.42;
  margin: 0 0 0.04in 0;
  color: var(--warm-cream);
  font-style: italic;
}
.cal-callouts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 8.4pt;
  letter-spacing: 0.06em;
  color: var(--warm-cream);
  text-transform: uppercase;
}
.cal-callouts ul li {
  padding: 0.02in 0;
  border-bottom: 1px dotted rgba(204, 153, 1, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cal-callouts ul li:last-child { border-bottom: none; }
.cal-callouts ul li span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(244, 230, 195, 0.85);
}

.cal-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0.1in 0.12in;
}
.cal-brand .promise {
  font-family: 'Allura', cursive;
  font-size: 38pt;
  color: var(--barn-red);
  line-height: 0.9;
  margin: 0;
}
.cal-brand .heart {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 9.5pt;
  text-transform: uppercase;
  color: var(--bean);
  margin: 0.06in 0 2px 0;
}
.cal-brand .city {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 9pt;
  color: var(--tabletop-brown);
}
.cal-brand .combo-mini {
  font-family: 'Archivo Black', sans-serif;
  color: var(--barn-red);
  font-size: 18pt;
  letter-spacing: 0.02em;
  margin: 0.06in 0 0 0;
}
.cal-brand .combo-mini-tag {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 7.4pt;
  color: var(--bean);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}
.cal-brand-logo {
  width: 1.5in;
  height: auto;
  margin-bottom: 0.06in;
}

/* Subtle illustration accents on calendar */
.cal-orn {
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
}

/* ============== PRINT STYLES ============== */
@page {
  size: letter portrait;
  margin: 0;
}

@media print {
  html, body { background: white; padding: 0; margin: 0; }
  body { gap: 0; padding: 0; }
  .page {
    box-shadow: none;
    page-break-after: always;
    margin: 0;
    width: 8.5in;
    height: 11in;
  }
  .page:last-child { page-break-after: auto; }
}

/* Screen helper: hide-on-print marker visible in browser only */
.screen-only {
  position: absolute;
  top: -28px;
  left: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 10pt;
  color: rgba(244, 230, 195, 0.55);
  text-transform: uppercase;
}
@media print { .screen-only { display: none; } }
