:root {
  --ink: #f5f1ea;
  --bg: #1c1815;
  --panel: #26201c;
  --ember: #e07a3e;
  --ember-dim: #b85f30;
  --muted: #b8ac9e;
  --line: rgba(245, 241, 234, 0.12);
  --max-width: 960px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  letter-spacing: -0.01em;
  margin: 0;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Nav ---------- */
header.nav {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav .brand { font-size: 1.3rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.nav .brand em { color: var(--ember); font-style: normal; }
.nav .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.nav .status-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.nav .status-badge.open { border-color: rgba(224, 122, 62, 0.5); color: var(--ember); }
.nav .status-badge.open .dot { background: var(--ember); box-shadow: 0 0 8px var(--ember); }
.nav .status-badge.closed { color: #8a8178; }

/* ---------- Hero ---------- */
.hero { padding: 5.5rem 0 4rem; text-align: center; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 1.25rem; }
.hero p.lede {
  max-width: 46ch;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero .hours-line { font-size: 0.92rem; color: var(--muted); }
.hero .hours-line b { color: var(--ink); }

/* ---------- Section shell ---------- */
section.block { padding: 4rem 0; border-top: 1px solid var(--line); }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 0.6rem;
  text-align: center;
}
section.block > .wrap > h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }

/* ---------- Menu ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.5rem 3rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item .name { font-weight: 700; font-size: 1.02rem; }
.menu-item .desc { color: var(--muted); font-size: 0.88rem; margin-top: 0.25rem; }
.menu-item .price { font-weight: 700; color: var(--ember); white-space: nowrap; padding-left: 1rem; }

/* ---------- Reservation ---------- */
.reserve-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ember); }
.btn-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: var(--ember);
  color: #1c1815;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-submit:hover { background: #ec8a51; transform: translateY(-1px); }
.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-message.show { display: block; }
.form-message.success { background: rgba(224, 122, 62, 0.14); border: 1px solid rgba(224, 122, 62, 0.4); color: var(--ink); }
.form-message.error { background: rgba(200, 80, 60, 0.14); border: 1px solid rgba(200, 80, 60, 0.4); color: #f0b8ab; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 2.5rem 0; text-align: center; color: var(--muted); font-size: 0.88rem; }
footer .addr { margin-bottom: 0.5rem; color: var(--ink); }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .reserve-panel { padding: 1.5rem; }
}
