/* ==========================================================================
   Rigo's Cafe — stylesheet
   Palette: warm cream, cafe brown, salsa red, cactus green
   ========================================================================== */

:root {
  --cream: #fdf8f1;
  --cream-2: #f6ecdd;
  --sand: #ead9c1;
  --ink: #21160f;
  --ink-soft: #5b4a3c;
  --ink-faint: #8a7666;
  --brick: #b3341f;
  --brick-dark: #8e2716;
  --chile: #d9541f;
  --masa: #e8a33d;
  --cactus: #3c6e47;
  --white: #fff;
  --line: #e5d6c0;
  --shadow-sm: 0 2px 8px rgba(56, 35, 20, .07);
  --shadow-md: 0 12px 32px rgba(56, 35, 20, .11);
  --shadow-lg: 0 28px 60px rgba(56, 35, 20, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1180px;
  --serif: "Bitter", "Georgia", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 74px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brick); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 10px;
  font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--chile); outline-offset: 3px; border-radius: 4px; }

/* ---------- small type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brick); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--masa); border-radius: 2px; }
.eyebrow.centered { justify-content: center; }
.lede { font-size: 1.14rem; color: var(--ink-soft); max-width: 62ch; }
.lede.centered { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--sans); font-size: .97rem; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brick); color: #fff; box-shadow: 0 8px 20px rgba(179, 52, 31, .28); }
.btn-primary:hover { background: var(--brick-dark); box-shadow: 0 12px 26px rgba(179, 52, 31, .34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(33, 22, 15, .22); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(33, 22, 15, .05); }
.btn-light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.centered { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 241, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--brick), var(--chile));
  color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em;
  box-shadow: 0 4px 12px rgba(179, 52, 31, .3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; }
.brand-sub { font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 999px; text-decoration: none;
  color: var(--ink-soft); font-weight: 600; font-size: .95rem; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: rgba(33, 22, 15, .06); }
.nav a[aria-current="page"] { color: var(--brick); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: .95rem; padding: 8px 12px; border-radius: 999px;
}
.header-phone:hover { background: rgba(33, 22, 15, .06); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; padding: 0; place-items: center; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-2px) rotate(-45deg); }

/* ---------- open / closed pill ---------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 12px; border-radius: 999px;
  background: rgba(60, 110, 71, .1); color: #2f5b39;
  font-size: .84rem; font-weight: 700;
}
.status-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: #3c6e47; box-shadow: 0 0 0 4px rgba(60, 110, 71, .18); }
.status-pill[data-open="false"] { background: rgba(140, 120, 100, .14); color: #6c5a4a; }
.status-pill[data-open="false"] .dot { background: #9a8672; box-shadow: 0 0 0 4px rgba(154, 134, 114, .16); }
.status-pill.on-dark { background: rgba(255, 255, 255, .16); color: #fff; backdrop-filter: blur(6px); }
.status-pill.on-dark .dot { background: #7fe0a0; box-shadow: 0 0 0 4px rgba(127, 224, 160, .22); }
.status-pill.on-dark[data-open="false"] .dot { background: #f0c98a; box-shadow: 0 0 0 4px rgba(240, 201, 138, .2); }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(28, 16, 9, .74) 0%, rgba(28, 16, 9, .5) 42%, rgba(28, 16, 9, .82) 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(28, 16, 9, .35), transparent 60%);
}
.hero-inner { padding: clamp(70px, 11vw, 132px) 0 clamp(56px, 8vw, 96px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0, 0, 0, .3); }
.hero h1 .accent { color: var(--masa); display: block; }
.hero p { font-size: 1.16rem; color: rgba(255, 255, 255, .9); max-width: 54ch; }
.hero .eyebrow { color: var(--masa); }
.hero .eyebrow::before { background: var(--masa); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; margin: 26px 0 30px; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: rgba(255, 255, 255, .88); font-weight: 500; }
.hero-meta-item svg { flex: none; opacity: .8; }
.stars { color: var(--masa); letter-spacing: 2px; }

/* strip under hero */
.info-strip { background: var(--ink); color: rgba(255, 255, 255, .88); }
.info-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-strip-item { padding: 22px 20px; display: flex; gap: 13px; align-items: flex-start; border-right: 1px solid rgba(255, 255, 255, .1); }
.info-strip-item:last-child { border-right: 0; }
.info-strip-item svg { flex: none; margin-top: 3px; color: var(--masa); }
.info-strip-item strong { display: block; color: #fff; font-size: .96rem; font-weight: 700; }
.info-strip-item span { font-size: .87rem; color: rgba(255, 255, 255, .62); }
.info-strip-item a { color: inherit; text-decoration: none; }
.info-strip-item a:hover strong { color: var(--masa); }

/* ---------- section headers ---------- */
.section-head { margin-bottom: 44px; }
.section-head.centered { text-align: center; }
.section-head.centered .lede { margin-left: auto; margin-right: auto; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-head h2 { margin-bottom: .35em; }

/* ---------- feature cards (dishes) ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dish-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.dish-body h3 { margin-bottom: .35em; font-size: 1.24rem; }
.dish-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.dish-price { font-family: var(--serif); font-weight: 700; color: var(--brick); font-size: 1.12rem; }
.tag {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  background: rgba(232, 163, 61, .18); color: #8a5a12;
  font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- story / about split ---------- */
.split-2 { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split-2.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.badge-float {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--brick); color: #fff; border-radius: 18px; padding: 18px 22px;
  box-shadow: var(--shadow-md); text-align: center; max-width: 190px;
}
.badge-float strong { display: block; font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.badge-float span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.tick-list { list-style: none; display: grid; gap: 12px; margin: 22px 0 30px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.tick-list li svg { flex: none; margin-top: 4px; color: var(--cactus); }

/* ---------- band (dark cta) ---------- */
.band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 85% 10%, rgba(217, 84, 31, .3), transparent 60%);
}
.band .wrap { position: relative; }
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .78); }
.band .eyebrow { color: var(--masa); }
.band .eyebrow::before { background: var(--masa); }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.review-card::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--serif); font-size: 5rem; color: var(--sand); line-height: 1;
}
.review-card .stars { font-size: 1rem; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--ink); }
.review-card cite { font-style: normal; font-weight: 700; font-size: .93rem; display: block; }
.review-card .who { color: var(--ink-faint); font-size: .84rem; }

/* ---------- hours table ---------- */
.hours-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 32px; box-shadow: var(--shadow-sm);
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .97rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; }
.hours-list .times { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }
.hours-list li.today { color: var(--brick); }
.hours-list li.today .day::after {
  content: "Today"; margin-left: 9px; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--brick); color: #fff; padding: 3px 8px; border-radius: 999px; vertical-align: middle;
}
.hours-list li.today .times { color: var(--brick); font-weight: 600; }

/* ---------- contact / map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); background: var(--cream-2); min-height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.contact-list { list-style: none; display: grid; gap: 20px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(179, 52, 31, .09); color: var(--brick);
}
.contact-list strong { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--brick); }

/* ---------- menu page ---------- */
.page-hero { background: var(--ink); color: #fff; padding: clamp(52px, 8vw, 88px) 0 clamp(48px, 7vw, 76px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(75% 130% at 80% 0%, rgba(217, 84, 31, .34), transparent 62%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 56ch; font-size: 1.1rem; margin: 0; }
.page-hero .eyebrow { color: var(--masa); }
.page-hero .eyebrow::before { background: var(--masa); }

.menu-nav {
  position: sticky; top: var(--header-h); z-index: 60;
  background: rgba(253, 248, 241, .95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.menu-nav-scroll { display: flex; gap: 8px; overflow-x: auto; padding: 13px 0; scrollbar-width: none; }
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-nav-scroll a {
  flex: none; padding: 8px 17px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); text-decoration: none; font-size: .89rem; font-weight: 600;
  white-space: nowrap; transition: all .16s;
}
.menu-nav-scroll a:hover { border-color: var(--brick); color: var(--brick); }
.menu-nav-scroll a.active { background: var(--brick); border-color: var(--brick); color: #fff; }

.menu-section { padding-top: 26px; margin-bottom: 52px; scroll-margin-top: calc(var(--header-h) + 78px); }
.menu-section-head { border-bottom: 3px solid var(--sand); padding-bottom: 14px; margin-bottom: 26px; }
.menu-section-head h2 { margin-bottom: .2em; }
.menu-section-head p { color: var(--ink-faint); font-size: .95rem; margin: 0; font-style: italic; }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 44px; }
.menu-item { padding: 15px 0; border-bottom: 1px dashed var(--line); }
.menu-item-top { display: flex; align-items: baseline; gap: 10px; }
.menu-item-name { font-family: var(--serif); font-weight: 700; font-size: 1.06rem; }
.menu-item-dots { flex: 1; border-bottom: 1.5px dotted var(--sand); transform: translateY(-4px); min-width: 16px; }
.menu-item-price { font-family: var(--serif); font-weight: 700; color: var(--brick); font-variant-numeric: tabular-nums; }
.menu-item-desc { color: var(--ink-soft); font-size: .92rem; margin: 5px 0 0; max-width: 56ch; }
.menu-item .tag { margin: 8px 0 0; }

.menu-note {
  background: var(--cream-2); border: 1px dashed var(--sand); border-radius: var(--radius);
  padding: 20px 24px; color: var(--ink-soft); font-size: .93rem; margin-top: 8px;
}
.menu-note strong { color: var(--ink); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-sm); transition: transform .3s; }
.gallery img:hover { transform: scale(1.03); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 1; height: 100%; }

/* ---------- footer ---------- */
.site-footer { background: #1a110b; color: rgba(255, 255, 255, .68); padding: 62px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); font-weight: 800; margin-bottom: 18px; }
.site-footer a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.site-footer a:hover { color: var(--masa); }
.site-footer ul { list-style: none; display: grid; gap: 10px; font-size: .95rem; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 34ch; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #fff; transition: background .2s, transform .2s;
}
.social-row a:hover { background: var(--brick); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .dish-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-item:nth-child(2) { border-right: 0; }
  .info-strip-item:nth-child(1), .info-strip-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 860px) {
  .header-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px 20px 26px; gap: 2px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav .btn { margin-top: 10px; }
  .nav .nav-order { display: inline-flex; }
  .split-2, .split-2.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .badge-float { right: 14px; bottom: -16px; }
  .header-phone span { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .dish-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .info-strip-item { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hours-card { padding: 24px 20px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .header-cta .btn { width: auto; }
  .nav .btn { width: 100%; }
}

/* ---------- print (menu) ---------- */
@media print {
  .site-header, .menu-nav, .site-footer, .band, .no-print, .page-hero .btn-row { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .page-hero { background: #fff; color: #000; padding: 0 0 18px; }
  .page-hero h1, .page-hero p { color: #000; }
  .menu-section { page-break-inside: avoid; margin-bottom: 22px; padding-top: 0; }
  .menu-items { grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
  .menu-item { padding: 7px 0; }
  .menu-item-desc { font-size: 9pt; }
  a { text-decoration: none; color: #000; }
}
