:root {
  color-scheme: light;
  --accent: #0f766e;
  --accent-soft: #e3f4f1;
  --bg: #fbfcfb;
  --surface: #ffffff;
  --surface-strong: #f5f8f7;
  --text: #17201f;
  --muted: #64706d;
  --line: #e3e8e6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
a { color: inherit; }
h1, h2, h3, p, dl { margin: 0; }
.menu-shell { width: min(100%, 780px); margin: 0 auto; padding: 20px 16px 28px; }
.restaurant-header { padding: 30px 0 18px; }
.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 { max-width: 12ch; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.65rem, 15vw, 5rem); font-weight: 500; line-height: 0.95; letter-spacing: 0; }
.tagline { margin-top: 16px; color: var(--accent); font-size: 1.04rem; font-weight: 700; }
.subtagline { max-width: 35rem; margin-top: 6px; color: var(--muted); font-size: 1rem; }
.restaurant-meta { display: grid; gap: 10px; margin-top: 22px; }
.restaurant-meta div { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.78); }
.restaurant-meta dt { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.restaurant-meta dd { margin: 4px 0 0; color: var(--text); font-size: 0.95rem; font-weight: 650; }
.category-nav { position: sticky; top: 0; z-index: 5; display: flex; gap: 8px; margin: 4px -16px 18px; padding: 10px 16px; overflow-x: auto; border-block: 1px solid rgba(227, 232, 230, 0.82); background: rgba(251, 252, 251, 0.9); backdrop-filter: blur(18px); scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: #263331; font-size: 0.86rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.menu-section { scroll-margin-top: 76px; margin-top: 18px; padding: 20px 0 2px; }
.menu-section h2 { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #16201e; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; letter-spacing: 0; }
.menu-section h2::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.menu-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; margin-bottom: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.86); box-shadow: 0 10px 30px rgba(22, 38, 36, 0.04); }
.menu-item h3 { color: #17201f; font-size: 1rem; font-weight: 760; }
.menu-item p { margin-top: 5px; color: var(--muted); font-size: 0.92rem; }
.menu-item strong { color: var(--accent); font-size: 0.98rem; font-weight: 800; white-space: nowrap; }
.tag { display: inline-flex; width: fit-content; margin-top: 10px; padding: 4px 8px; border-radius: 999px; background: var(--surface-strong); color: #56625f; font-size: 0.72rem; font-weight: 750; }
.site-footer { margin-top: 34px; padding: 24px 0 6px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; text-align: center; }
@media (min-width: 680px) {
  .menu-shell { padding: 44px 24px; }
  .restaurant-meta { grid-template-columns: repeat(3, 1fr); }
  .category-nav { margin-inline: 0; padding-inline: 0; border-top: 0; }
  .menu-item { padding: 18px 20px; }
}
