/* Replace #ff8c42 in this file to change the accent color. */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
  background: #0d1018;
  color: #f3f4f6;
  line-height: 1.6;
}
a { color: #ff8c42; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid #ff8c42; outline-offset: 3px; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: #ff8c42;
  color: #0b0b0b;
  padding: 0.5rem 1rem;
  z-index: 10;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }
.wrapper { width: min(1100px, 90%); margin: 0 auto; }
.site-header { background: #161b27; border-bottom: 1px solid #21293a; }
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo { width: 120px; height: auto; }
.site-nav { display: flex; gap: 1rem; }
.site-nav a { padding: 0.5rem 0.75rem; border-radius: 6px; color: #f3f4f6; }
.site-nav a:hover { background: #1f2635; }
.site-nav .active { background: #ff8c42; color: #0b0b0b; }
.hero { padding: 2.5rem 0 1.5rem; }
h1, h2 { margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; color: #cdd2dc; }
.tagline { font-size: 1.2rem; color: #f3f4f6; }
.lede { max-width: 680px; }
.button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #ff8c42;
  color: #0b0b0b;
  border-radius: 6px;
  font-weight: 700;
}
.intro, .content-block, .page-heading { padding: 1.5rem 0; }
.feature-grid { display: grid; gap: 1rem; margin-top: 1rem; }
.feature-card {
  background: #161b27;
  border: 1px solid #21293a;
  border-radius: 10px;
  padding: 1rem;
}
.hero-image {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 1.25rem auto 0;
  border-radius: 12px;
  border: 1px solid #21293a;
}
.menu-grid { display: grid; gap: 1rem; padding-bottom: 2rem; }
.menu-card {
  background: #161b27;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #21293a;
}
.menu-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #21293a;
}
.menu-card h2 { margin-top: 0; }
.price { color: #f3f4f6; font-weight: 700; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { padding: 0.25rem 0; }
.site-footer { background: #0a0d14; border-top: 1px solid #21293a; }
.footer-content { padding: 1rem 0; color: #cdd2dc; text-align: center; }
@media (min-width: 768px) {
  .site-nav { gap: 1.5rem; }
  .hero { padding: 3rem 0 2rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
