/* Pete's Blue Chip — variant C (Conversion-first, skill C v1.0)
   Action color #B01F24 appears ONLY on .btn-primary. Nowhere else. */

:root {
  --action: #B01F24;        /* primary buttons ONLY */
  --action-dark: #8F181C;   /* hover state of the action */
  --ink: #20242B;
  --navy: #1B2A47;
  --muted: #5A5F6A;
  --cream: #FFF9F0;
  --card: #FFFFFF;
  --line: #E7DFD2;
  --open-green: #1E6E34;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
html.noanim * { transition: none !important; animation: none !important; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { color: var(--navy); line-height: 1.15; }
h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: 1.55rem; font-weight: 800; margin-bottom: 0.35em; }
h3 { font-size: 1.15rem; font-weight: 700; }

a { color: var(--navy); }
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

.section-inner { max-width: 1060px; margin: 0 auto; padding: 48px 20px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); }
.topbar-inner {
  max-width: 1060px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { color: #fff; font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.topbar-call {
  color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 8px;
  padding: 9px 12px; font-size: 0.95rem; min-height: 44px;
  display: inline-flex; align-items: center;
}
.topbar-call:hover { background: rgba(255,255,255,0.12); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  border-radius: 10px; font-weight: 800; font-size: 1.05rem;
  text-decoration: none; text-align: center;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn-primary { background: var(--action); color: #fff; }
.btn-primary:hover { background: var(--action-dark); }
.btn-secondary {
  background: #fff; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-secondary-dark { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary-dark:hover { background: #fff; color: var(--navy); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 0; }

/* ---------- Hero ---------- */
.hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.hero-inner {
  max-width: 1060px; margin: 0 auto; padding: 30px 20px 44px;
  display: grid; gap: 28px;
}
.hero-sub { margin-top: 10px; font-size: 1.05rem; }
.hero-proof { margin-top: 10px; color: var(--muted); font-size: 0.98rem; }
.hero-proof strong { color: var(--ink); }
.hours-line { margin-top: 16px; font-size: 1rem; }
.open-status { font-weight: 800; }
.open-status.is-open { color: var(--open-green); }
.open-status.is-closed { color: var(--muted); }
.hours-detail { color: var(--muted); font-size: 0.95rem; }

.hero-quote {
  margin-top: 20px; padding: 14px 16px;
  background: var(--card); border-left: 4px solid var(--navy); border-radius: 0 10px 10px 0;
}
.hero-quote p { font-weight: 600; }
.hero-quote cite, .menu-quote cite, .quote-grid cite {
  display: block; margin-top: 6px; font-style: normal;
  color: var(--muted); font-size: 0.9rem;
}

.hero-photo img { border-radius: 12px; width: 100%; }
figcaption { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* ---------- Menu ---------- */
.menu { background: #fff; border-bottom: 1px solid var(--line); }
.menu .section-inner { padding-top: 44px; }
.section-sub { color: var(--muted); margin-bottom: 26px; }

.menu-grid { display: grid; gap: 22px; }
.menu-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px;
}
.menu-card figure img { border-radius: 10px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.menu-card h3 { margin: 14px 0 8px; }
.tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px;
}
.star-item { font-size: 0.98rem; margin-bottom: 8px; }

.price-list { list-style: none; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list em { color: var(--muted); font-style: normal; font-size: 0.88rem; }
.price { font-weight: 800; color: var(--ink); white-space: nowrap; }
.menu-more { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }

.menu-quote {
  margin-top: 12px; padding: 12px 14px; background: #fff;
  border-left: 4px solid var(--navy); border-radius: 0 10px 10px 0; font-size: 0.95rem;
}

.mini-ask {
  margin-top: 30px; padding: 22px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  text-align: center;
}
.mini-ask p { font-size: 1.1rem; }
.mini-ask .cta-row { justify-content: center; }

/* ---------- Regulars ---------- */
.regulars { background: var(--cream); border-bottom: 1px solid var(--line); }
.wide-photo { margin: 18px 0 22px; }
.wide-photo img { border-radius: 12px; width: 100%; }
.quote-grid { display: grid; gap: 16px; }
.quote-grid blockquote {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px; font-size: 0.98rem;
}

/* ---------- Find us ---------- */
.findus { background: #fff; border-bottom: 1px solid var(--line); }
.findus-grid { display: grid; gap: 22px; margin-top: 18px; }
.findus-block h3 { margin-bottom: 8px; }
.map-link { font-weight: 700; font-size: 1.05rem; }
.tel-link { font-weight: 800; font-size: 1.3rem; white-space: nowrap; }
.findus-note { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.hours-table { border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 4px 14px 4px 0; }
.hours-table th { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); border-bottom: 1px solid var(--line); }
.faq-list { margin-top: 6px; }
.faq-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item dt { font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.faq-item dd { margin: 0; }

/* ---------- Final ask ---------- */
.final-ask { background: var(--navy); text-align: center; }
.final-ask h2, .final-ask p { color: #fff; }
.final-ask p { margin-top: 8px; }
.final-ask .cta-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.2); }
.footer .section-inner { padding: 28px 20px 36px; }
.footer p { color: #FFF9F0; font-size: 0.95rem; margin-bottom: 6px; }
.footer a { color: #FFF9F0; }
.fine-print { color: #C9CEDB; font-size: 0.85rem; margin-top: 10px; }

/* ---------- Sticky mobile action bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 249, 240, 0.97);
  border-top: 1px solid var(--line);
}
.sticky-bar .btn { flex: 1; min-height: 48px; }
body { padding-bottom: 84px; } /* keep sticky bar off the content */

/* ---------- Desktop ---------- */
@media (min-width: 720px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }
  .hero-inner {
    grid-template-columns: 1.1fr 1fr; align-items: center;
    padding: 56px 20px 64px;
  }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .findus-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Narrow phones: keep top bar on one line */
@media (max-width: 400px) {
  .topbar-inner { gap: 8px; }
  .brand { font-size: 0.98rem; }
  .topbar-call { font-size: 0.88rem; padding: 8px 9px; }
}
