:root {
  --ink: #2b2b2b;
  --beige: #f3ead7;
  --beige-ink: #3a3127;
  --dark: #232021;
  --dark-ink: #f3ead7;
  --orange: #d8642a;
  --orange-ink: #fff6ee;
  --accent: #d8642a;
  --max: 60rem;
  --serif: "Bree Serif", Georgia, serif;
  --sans: "Open Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--sans);
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
  background: var(--beige);
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }

a { color: var(--accent); }

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--dark);
  color: var(--dark-ink);
}
.site-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand img { height: 44px; width: auto; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
.site-nav a {
  color: var(--dark-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--accent); }

/* Sections */
.section { padding: 3rem 0; }
.section h1 { font-size: 2rem; margin: 0 0 0.25rem; }
.section h2 { font-size: 1.25rem; font-weight: 400; margin: 0 0 1rem; }
.section-beige { background: var(--beige); color: var(--beige-ink); }
.section-dark { background: var(--dark); color: var(--dark-ink); }
.section-dark a { color: #f0a878; }
.section-orange { background: var(--orange); color: var(--orange-ink); }
.section-orange a { color: #fff; }

.callout { font-size: 1.05rem; max-width: 46rem; }

/* Hero */
.hero {
  background: var(--dark) url("/assets/img/banner3.png") 50% 0 / cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 90%;
}
.hero-kicker { font-size: 1.25rem; margin: 0; color: #f0a878; }
.hero-title { font-size: clamp(2.5rem, 8vw, 4.5rem); margin: 0.25rem 0 1rem; }
.hero-note { font-style: italic; margin: 0 0 1.25rem; }

/* Buttons */
.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}
.button:hover { background: #b85120; }

/* Menu */
#menu { margin-top: 1.5rem; }
.menu-section { margin-bottom: 2rem; }
.menu-section h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 0.35rem;
}
.menu-items { list-style: none; padding: 0; margin: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
}
.menu-item .name { font-weight: 600; }
.menu-item .price { font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-item .desc {
  flex-basis: 100%;
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

/* Cards (hours) */
.cards { display: grid; gap: 1.25rem; }
.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.card h2 { margin-top: 0; }

/* Location */
.location-grid { display: grid; gap: 1.5rem; }
.location-map iframe { border-radius: 0.5rem; }

/* Gallery */
.gallery {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-item { margin: 0; }
.gallery-item img { border-radius: 0.5rem; width: 100%; }
.gallery-item figcaption { margin-top: 0.4rem; font-size: 0.9rem; opacity: 0.85; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--dark-ink);
  padding: 2rem 0;
  text-align: center;
}
.site-footer a { color: #f0a878; }
.site-footer .updated { font-style: italic; opacity: 0.85; }
.site-footer .copyright { font-size: 0.85rem; opacity: 0.7; }

/* Responsive: wider screens */
@media (min-width: 40rem) {
  .site-header-inner { flex-direction: row; justify-content: space-between; }
  .cards { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
