@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .topbar,
  .site-header,
  .site-footer,
  .page-hero,
  .menu-tools-wrap,
  .menu-board-panel,
  .final-cta,
  .btn,
  .no-print {
    display: none !important;
  }

  .section {
    padding: 0;
  }

  .container {
    width: 100%;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7mm;
  }

  .menu-category,
  .menu-category[hidden] {
    display: block;
    break-inside: avoid;
    padding: 4mm;
    border: 0.3mm solid #bbb;
    border-radius: 0;
    box-shadow: none;
  }

  .menu-item,
  .menu-item[hidden] {
    display: grid;
  }

  .menu-category h2 {
    font-size: 16pt;
  }

  .menu-item {
    padding: 2mm 0;
  }

  a {
    text-decoration: none;
  }
}
