:root {
  --bg:#f7f1e8;
  --card:#fffdf9;
  --ink:#171513;
  --muted:#6e6861;
  --gold:#b7832f;
  --line:#e8ddcf;
  --shadow:0 8px 26px rgba(67,49,30,.08);
}
* { box-sizing:border-box; }
body {
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:radial-gradient(circle at top,rgba(255,255,255,.9),transparent 34%),var(--bg);
}
button,input { font:inherit; }
button { cursor:pointer; -webkit-tap-highlight-color:transparent; }

.menu-shell {
  width:min(100%,880px);
  margin:0 auto;
  padding:26px 14px 48px;
}
.menu-header { text-align:center; padding:0 0 16px; }
.noir-logo {
  width:min(230px,68vw);
  height:auto;
  display:block;
  margin:0 auto;
}
.intro-card {
  text-align:center;
  padding:25px 18px 22px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.eyebrow {
  margin:0;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
}
.location-label {
  display:inline-block;
  margin:12px 0 0;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#5e5953;
  font-weight:800;
  background:#fff;
}
.intro-copy {
  margin:15px 0 18px;
  color:#59544e;
  font-size:18px;
}
.limit-banner {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin:0 auto;
  max-width:620px;
  padding:13px 15px;
  border-radius:16px;
  background:#f8efe3;
  color:var(--gold);
  line-height:1.4;
}
.call-btn {
  margin-top:16px;
  padding:11px 22px;
  border:1.5px solid var(--gold);
  border-radius:999px;
  background:#fff;
  color:var(--gold);
  font-weight:800;
}
.menu-section { margin-top:30px; }
.menu-section h2 {
  margin:0 0 12px 4px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  font-weight:500;
}
.drink-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.drink-card {
  position:relative;
  min-width:0;
  min-height:190px;
  padding:15px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--card);
  box-shadow:0 5px 18px rgba(67,49,30,.05);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.drink-icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#f8f2e9;
  font-size:29px;
}
.drink-copy { margin-top:10px; min-width:0; }
.drink-title-line {
  display:flex;
  gap:6px;
  align-items:flex-start;
}
.drink-copy h3 {
  margin:0;
  font-size:16px;
  line-height:1.2;
}
.drink-copy p {
  margin:6px 0 48px;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.35;
}
.alcohol-dot { font-size:13px; }
.add-btn {
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  width:calc(100% - 28px);
  padding:10px 12px;
  border:0;
  border-radius:999px;
  background:linear-gradient(145deg,#c99436,#ae7723);
  color:#fff;
  font-weight:800;
}
.add-btn:disabled,.call-btn:disabled { opacity:.55; cursor:wait; }
.menu-footer { text-align:center; color:var(--gold); margin-top:28px; }
.footer-rule {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.footer-rule::before,.footer-rule::after {
  content:"";
  width:90px;
  height:1px;
  background:var(--gold);
  opacity:.65;
}
.footer-rule span {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1.5px solid var(--gold);
  border-radius:50%;
}
.menu-footer p { margin:9px 0 0; font-size:14px; font-weight:650; }
.toast {
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:1000;
  transform:translate(-50%,22px);
  opacity:0;
  pointer-events:none;
  background:#171513;
  color:#fff;
  padding:12px 15px;
  border-radius:12px;
  font-weight:750;
  max-width:calc(100% - 26px);
  width:max-content;
  transition:.2s;
}
.toast.show { opacity:1; transform:translate(-50%,0); }

/* Dashboard */
.dashboard-page { background:#f7f7f5; min-height:100vh; }
.dash-header {
  position:sticky; top:0; z-index:10;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:18px 22px;
  background:rgba(255,255,255,.96); border-bottom:1px solid #e6e6e6;
}
.dash-header h1 { margin:0; font-size:25px; }
.header-actions { display:flex; gap:8px; }
.ghost-btn {
  border:1px solid #ddd; background:#fff; border-radius:10px;
  padding:10px 12px; font-weight:700;
}
.ghost-btn.danger { color:#9b2c2c; }
.dashboard-shell { max-width:1100px; margin:0 auto; padding:22px; }
.login-box {
  max-width:420px; margin:70px auto; background:#fff;
  border:1px solid #e6e6e6; border-radius:18px;
  padding:24px; box-shadow:var(--shadow);
}
.login-box input {
  width:100%; padding:13px; border:1px solid #ddd; border-radius:10px;
}
.primary-btn {
  width:100%; border:0; border-radius:12px; padding:14px 16px;
  background:#111; color:#fff; font-weight:800;
}
.login-box .primary-btn { margin-top:12px; }
.error-text { color:#a00; min-height:20px; }
.stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:12px; margin-bottom:18px;
}
.stats > div {
  background:#fff; border:1px solid #e6e6e6; border-radius:14px;
  padding:16px; display:flex; flex-direction:column; gap:4px;
}
.stats strong { font-size:28px; }
.stats span { color:#666; font-size:13px; }
.orders {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:14px;
}
.order {
  background:#fff; border:1px solid #e3e3e3;
  border-radius:16px; padding:17px;
}
.order.new { border-left:5px solid #111; }
.order.making { border-left:5px solid #9a6b00; }
.order.delivered { opacity:.6; }
.order-top { display:flex; justify-content:space-between; gap:10px; }
.order-top h2 { margin:6px 0 0; }
.order time { color:#777; font-size:13px; }
.status-badge {
  display:inline-block; text-transform:uppercase;
  font-size:10px; letter-spacing:.12em; font-weight:900;
  background:#efefef; border-radius:999px; padding:5px 8px;
}
.order h3 { margin:18px 0 3px; font-size:21px; }
.guest-name { margin:0; color:#666; }
.notes { background:#f7f3ec; padding:10px; border-radius:10px; color:#5d554e; }
.order-actions { display:flex; gap:8px; margin-top:15px; }
.order-actions .primary-btn { flex:1; width:auto; }
.empty-state {
  grid-column:1/-1;
  background:#fff; border:1px dashed #ccc; border-radius:16px;
  padding:50px; text-align:center; color:#777;
}
.new-order-modal[hidden] { display:none; }
.new-order-modal {
  position:fixed; inset:0; z-index:1000;
  display:grid; place-items:center;
  background:rgba(0,0,0,.68); padding:20px;
}
.new-order-panel {
  width:min(560px,100%);
  background:#fff; border-radius:24px;
  padding:34px; text-align:center;
  box-shadow:0 25px 80px rgba(0,0,0,.35);
}
.modal-location {
  font-size:clamp(42px,8vw,76px);
  font-weight:950; margin:10px 0 6px;
}
.modal-drink { font-size:clamp(25px,5vw,40px); font-weight:800; margin-bottom:10px; }
.modal-notes { font-size:17px; color:#6b6259; margin:12px 0 22px; }
.new-order-panel .primary-btn { font-size:20px; padding:18px; }
.new-order-panel .ghost-btn { width:100%; margin-top:9px; }

@media (max-width:520px) {
  .menu-shell { padding-left:10px; padding-right:10px; }
  .drink-list { gap:9px; }
  .drink-card { min-height:200px; padding:12px; }
  .drink-copy h3 { font-size:15px; }
  .drink-copy p { font-size:11.5px; margin-bottom:46px; }
  .add-btn { left:11px; right:11px; bottom:11px; width:calc(100% - 22px); }
  .stats strong { font-size:22px; }
}
