/* ============================================================
   menu-classic — standalone elegant printed menu
   ============================================================ */

:root {
  --paper: #f6f0e2;
  --paper-2: #efe7d4;
  --ink: #2c261d;
  --ink-soft: #5a5040;
  --ink-faint: #8a7d65;
  --line: #c9bda0;
  --card: #fbf7ec;
  --accent: #8a6d3b; /* overridden inline from config */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(201,189,160,0.18), transparent 55%);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }

/* ---------- Layout column ---------- */
.menu-header,
.menu-body,
.menu-footer {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 26px;
  padding-right: 26px;
}

/* ---------- Header ---------- */
.menu-header {
  text-align: center;
  padding-top: 46px;
  padding-bottom: 26px;
}

.brand-logo img {
  max-height: 92px;
  width: auto;
  margin: 0 auto 18px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ink);
}

.brand-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 10px 0 0;
  letter-spacing: 0.03em;
}

.header-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 16px;
  max-width: 320px;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 35%, var(--line) 65%, transparent);
}

.rule-diamond {
  color: var(--accent);
  font-size: 0.7rem;
  line-height: 1;
}

.header-meta {
  margin: 3px 0;
  font-size: 0.95rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ---------- Sticky category nav ---------- */
.cat-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(44,38,29,0.06);
}

.cat-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 640px;
  margin: 0 auto;
  padding: 11px 18px;
}

.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-link {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.cat-link:hover { color: var(--accent); }

.cat-link.active {
  color: var(--paper);
  background: var(--accent);
}

/* ---------- Body / sections ---------- */
.menu-body {
  padding-top: 34px;
  padding-bottom: 30px;
}

.menu-section {
  margin-bottom: 50px;
  scroll-margin-top: 70px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  text-align: center;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: var(--accent);
  margin: 12px auto 0;
  opacity: 0.7;
}

.section-note {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 10px auto 24px;
  max-width: 90%;
}

.section-footer {
  text-align: center;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-faint);
  margin-top: 22px;
}

/* ---------- Items ---------- */
.item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line);
}

.menu-item:last-child { border-bottom: none; }

.item-image {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-body { flex: 1; min-width: 0; }

.item-head {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.34rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.01em;
  flex: 0 1 auto;
}

.item-leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--ink-faint);
  transform: translateY(-4px);
  min-width: 18px;
  opacity: 0.6;
}

.item-desc {
  margin: 5px 0 0;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.0rem;
  line-height: 1.5;
}

.item-list.compact .menu-item { padding: 7px 0; }
.item-list.compact .item-name { font-size: 1.12rem; }

/* ---------- Happy hour ---------- */
.happy-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 24px;
}

.pricing-lines {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  text-align: center;
  max-width: 420px;
}

.pricing-lines li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 1.08rem;
}

.pricing-lines li:last-child { border-bottom: none; }

.hh-lists {
  display: grid;
  gap: 24px;
}

.hh-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 8px;
}

/* ---------- Hours ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 1.0rem;
}

.hours-list li:last-child { border-bottom: none; }

.h-label { color: var(--ink-soft); }
.h-value { color: var(--ink); font-style: italic; }

/* ---------- Events ---------- */
.events-tagline {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 24px;
}

.closers {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.closer { text-align: center; }

/* ---------- Footer ---------- */
.menu-footer {
  text-align: center;
  padding-top: 18px;
  padding-bottom: 54px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 8px 0 16px;
}

.social-links a {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.social-links a:hover { color: var(--accent); }

.footer-contact { margin: 4px 0; font-size: 1.0rem; }

.footer-copy {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(44,38,29,0.28);
  z-index: 30;
  opacity: 0.9;
}

.to-top:hover { opacity: 1; }

/* ---------- Responsive up-scaling ---------- */
@media (min-width: 600px) {
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .hh-lists { grid-template-columns: 1fr 1fr; }
  .closers { grid-template-columns: 1fr 1fr; }
  .item-image { flex-basis: 90px; width: 90px; height: 90px; }
}

@media (max-width: 380px) {
  body { font-size: 17px; }
  .menu-header, .menu-body, .menu-footer { padding-left: 18px; padding-right: 18px; }
  .item-image { flex-basis: 64px; width: 64px; height: 64px; }
}