*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: #1A1612; }
body {
  color: #F4EBDC;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Top bar — minimal, doesn't get in the way */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(244,235,220,0.15);
  background: #1A1612;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 16px;
}
.brand .dot { color: #C8821E; }
.label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8A989;
}

/* Pages — vertical scroll of menu images */
.pages {
  max-width: 600px;
  margin: 0 auto;
  display: block;
}
.pages picture { display: block; }
.pages img {
  display: block;
  width: 100%;
  height: auto;
  background: #2C2622;  /* placeholder color before image paints */
}

/* Footer — small CTA + back link */
.foot {
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 20px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 22px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: #F4EBDC;
  color: #1A1612;
  border: 2px solid #F4EBDC;
  border-radius: 4px;
  box-shadow: 0 3px 0 #C8821E;
}
.cta:active { transform: translateY(2px); box-shadow: 0 0 0 #C8821E; }
.back {
  color: #B8A989;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 4px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.back:hover { color: #F4EBDC; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
