/* print.css — applied via media="print" link on index.html
   Strips nav/hero-art/contact-band cruft; keeps menu, hours, address legible
   when a customer prints from their phone. */

:root {
  --bg: #fff;
  --surface: #fff;
  --ink: #000;
  --accent: #000;
  --muted: #555;
}

* { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }

body {
  background: #fff !important;
  color: #000 !important;
  font: 11pt/1.4 Georgia, 'Times New Roman', serif !important;
  margin: 0;
}

/* hide visual chrome */
.site-header,
.hero-wordmark,
.hero-photo,
.hero-overlay,
.hero-ribbon,
.hero-ctas,
.hero-trust,
.poster,
.phrase-break,
.gallery,
.testimonials,
.contact,
.skip-link,
.call-btn,
.btn,
.map-frame,
.about-art,
.about-credit {
  display: none !important;
}

.hero { min-height: 0 !important; }

main, section {
  display: block !important;
  page-break-inside: avoid;
  padding: 8pt 0 !important;
  margin: 0 !important;
}

.hero, .about, .menu, .find-us, .site-footer {
  padding: 8pt 0 !important;
  border: 0 !important;
}

h1, h2, h3 {
  font-family: serif !important;
  color: #000 !important;
  margin: 0 0 4pt;
  page-break-after: avoid;
}

.hero-headline, .section-headline { font-size: 18pt !important; }
.sub-heading { font-size: 13pt !important; }

.eyebrow {
  font-size: 9pt !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555 !important;
}

p, dt, dd { font-size: 11pt !important; }

.menu-grid { display: block !important; columns: 2; column-gap: 18pt; }
.menu-card {
  break-inside: avoid;
  border: 0 !important;
  border-bottom: 0.5pt solid #999 !important;
  padding: 4pt 0 !important;
  margin: 0 !important;
}
.menu-card__name { font-size: 11pt !important; font-weight: 700; }
.menu-card__desc { font-size: 10pt !important; color: #333 !important; }

.hours-list { border-top: 1px solid #000 !important; }
.hours-row {
  display: grid !important;
  grid-template-columns: 60pt 1fr;
  padding: 3pt 0 !important;
  border-bottom: 0.5pt solid #999 !important;
}

.find-us-grid, .about-grid { display: block !important; }

a {
  color: #000 !important;
  text-decoration: underline;
}
a[href^="tel:"]::after,
a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }
a[href^="tel:"]::after { content: ""; } /* phone is already in copy; no doubling */

.address { display: block !important; margin: 0 0 6pt !important; }
.site-footer { padding: 8pt 0 !important; }
.footer-grid { display: block !important; }
.footer-col { margin-bottom: 6pt; }

@page { margin: 12mm; }
