:root {
  --bg: #160f0a;
  --panel: #24160e;
  --text: #fff4dd;
  --muted: #d6b98d;
  --accent: #d76619;
  --accent-dark: #9c3d08;
  --border: #5c3b22;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(215, 102, 25, .22), transparent 34rem), linear-gradient(180deg, #120c08, #24160e);
  min-height: 100vh;
}
.app { width: min(980px, 92vw); margin: 0 auto; padding: 32px 0 48px; }
.hero { text-align: center; padding: 36px 20px 24px; }
.menu-image { max-width: 100%; height: auto; border-radius: 12px; margin-bottom: 24px; display: block; margin-left: auto; margin-right: auto; }
.logo {
  display: inline-grid; place-items: center; width: 92px; height: 92px;
  border: 3px solid var(--muted); border-radius: 50%; color: var(--muted);
  font-size: 32px; font-weight: 800; letter-spacing: 3px;
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 5px; font-weight: 700; }
h1 { margin: 8px 0; font-size: clamp(38px, 7vw, 74px); line-height: .95; }
.subtext { color: var(--muted); margin: 0; font-size: 18px; }
.card {
  background: rgba(36, 22, 14, .92); border: 1px solid var(--border);
  border-radius: 18px; box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  padding: 24px; margin-top: 22px;
}
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%; border: 1px solid #69452b; border-radius: 12px;
  background: #fff8ea; color: #1f120b; padding: 13px 14px; font: inherit;
}
textarea { resize: vertical; }
button {
  margin-top: 18px; width: 100%; border: 0; border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff8ea; padding: 14px 18px; font-size: 18px; font-weight: 800; cursor: pointer;
}
button:hover { filter: brightness(1.08); }
.secondary {
  width: auto; margin: 0; padding: 10px 14px; font-size: 15px;
  background: transparent; border: 1px solid var(--accent); color: var(--text);
}
.message { color: var(--muted); margin-bottom: 0; font-weight: 700; }
.admin-header { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.admin h2 { margin: 0; }
.reservation-list { display: grid; gap: 12px; margin-top: 18px; }
.reservation-item { border: 1px solid var(--border); border-radius: 14px; padding: 14px; background: rgba(0, 0, 0, .18); }
.reservation-item strong { color: #fff8ea; }
.reservation-meta { color: var(--muted); margin-top: 6px; }
.delete-btn { width: auto; margin-top: 10px; padding: 8px 12px; font-size: 14px; background: #4c2112; }
.empty { color: var(--muted); font-style: italic; }
@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .admin-header { display: grid; }
  .secondary { width: 100%; }
}
