/* ============ YANG'S PLACE OPERATIONS SUITE ============
   Brand: deep navy + imperial champagne gold, fine dining Chinese */

:root {
  --bg-0: #060b16;
  --bg-1: #0c1424;
  --bg-2: #131e33;
  --bg-3: #1a2740;
  --line: #233047;
  --line-2: #2e3d58;
  --ink: #f5ede0;
  --ink-2: #c4cfdf;
  --ink-3: #7e8aa0;
  /* gold palette, kept as --bronze-* names so all existing rules adopt automatically */
  --bronze-1: #f0d68c;
  --bronze-2: #d4b87f;
  --bronze-3: #b8964a;
  --bronze-deep: #7d6228;
  --ok: #6db972;
  --warn: #e0a050;
  --hot: #d96852;
  --shadow: 0 30px 60px -30px rgba(0,0,0,0.75), 0 8px 24px -12px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse at top, #15203a 0%, #0a1124 55%, #04081a 100%);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px; /* room for fixed topbar */
}
@media (max-width: 900px) { body { padding-top: 62px; } }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; }
h3 { font-size: 20px; font-weight: 600; }

.accent {
  background: linear-gradient(135deg, var(--bronze-1) 0%, var(--bronze-2) 50%, var(--bronze-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ TOP BAR ============ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 32px;
  background: rgba(6, 11, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 16px;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-tabs { display: flex; gap: 4px; flex: 1; justify-content: center; flex-wrap: wrap; }
.tab {
  background: transparent; color: var(--ink-2);
  border: 1px solid transparent; padding: 8px 14px; border-radius: 8px;
  font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s;
}
.tab:hover { color: var(--ink); background: var(--bg-2); }
.tab.active {
  color: var(--bronze-1);
  background: linear-gradient(135deg, rgba(232,201,144,0.12), rgba(160,126,68,0.06));
  border-color: var(--line-2);
}
.nav-meta { display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 12px; }
.btn-book-nav {
  padding: 8px 16px; font-size: 12px; font-weight: 600;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  color: #0c1424; border: none; border-radius: 100px;
  font-family: 'Inter', sans-serif; cursor: pointer;
  letter-spacing: 0.02em; transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-book-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px -6px rgba(232,201,144,0.5); }
.hamburger {
  display: none;
  width: 38px; height: 38px;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 9px;
  cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.hamburger span {
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--bronze-2); transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ MOBILE SLIDE-IN NAV ============ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  display: none; pointer-events: none;
}
.mobile-nav.open { display: block; pointer-events: auto; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.3s;
}
.mobile-nav.open .mobile-nav-backdrop { background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(340px, 88vw);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-left: 1px solid var(--line-2);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.7);
  padding: 24px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.2,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mn-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.mn-head .brand-name { font-size: 18px; letter-spacing: 0.16em; }
.mn-tabs { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mn-tab {
  text-align: left; padding: 14px 16px; font-size: 15px; font-weight: 500;
  background: transparent; color: var(--ink-2);
  border: 1px solid transparent; border-radius: 10px;
  cursor: pointer; transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.mn-tab:hover, .mn-tab.active {
  color: var(--bronze-1);
  background: linear-gradient(135deg, rgba(232,201,144,0.1), rgba(160,126,68,0.04));
  border-color: var(--line-2);
}
.mn-cta { width: 100%; margin: 20px 0 14px; }
.mn-foot { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.mn-foot a { color: var(--ink-2); font-size: 13px; text-decoration: none; padding: 6px 0; }
.mn-foot a:hover { color: var(--bronze-1); }

/* ============ TOASTS ============ */
.toast-wrap {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; align-items: center;
}
.toast {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--bronze-3);
  color: var(--ink); padding: 14px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,201,144,0.15);
  pointer-events: auto;
  animation: toastIn 0.3s cubic-bezier(0.2,0,0.2,1);
  display: flex; align-items: center; gap: 10px;
}
.toast.success { border-color: var(--ok); }
.toast.error { border-color: var(--hot); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.toast.leaving { animation: toastOut 0.25s ease forwards; }
@keyframes toastOut { to { opacity: 0; transform: translateY(20px); } }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); display: inline-block; }
.dot.live { background: var(--ok); box-shadow: 0 0 0 4px rgba(109,185,114,0.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ============ PANELS ============ */
main { padding: 40px 32px 80px; max-width: 1400px; margin: 0 auto; }
.panel { display: none; animation: fade 0.4s ease; }
.panel.active { display: block; }
@keyframes fade { from{opacity:0; transform:translateY(8px)} to{opacity:1; transform:none} }

.eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze-2); margin-bottom: 16px; font-weight: 600;
}
.lead { font-size: 18px; color: var(--ink-2); max-width: 560px; margin-top: 20px; }
.lead-sm { font-size: 15px; color: var(--ink-2); margin-top: 8px; max-width: 640px; }
.section-title { margin: 64px 0 24px; }

/* ============ HERO ============ */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  align-items: center; padding: 40px 0 24px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 32px; }
.trust-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.trust-row > div { display: flex; flex-direction: column; }
.trust-row strong {
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.trust-row span { font-size: 12px; color: var(--ink-3); }

.kpi-stack { display: flex; flex-direction: column; gap: 14px; }
.kpi-card {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; box-shadow: var(--shadow);
}
.kpi-label { font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.kpi-value {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600;
  margin-top: 4px; color: var(--ink);
}
.kpi-trend { font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500; margin-left: 8px; }
.kpi-trend.up { color: var(--ok); }
.kpi-trend.down { color: var(--ok); }
.bar { width: 100%; height: 4px; background: var(--bg-3); border-radius: 4px; margin-top: 14px; overflow: hidden; }
.bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--bronze-3), var(--bronze-1));
  border-radius: 4px;
}
.kpi-foot { margin-top: 8px; font-size: 12px; color: var(--ink-3); }

/* ============ BUTTONS ============ */
.btn {
  border: none; padding: 14px 22px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.2s;
}
.btn.primary {
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  color: #0c1424;
  box-shadow: 0 8px 24px -8px rgba(201,165,114,0.45);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(201,165,114,0.55); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn.ghost:hover { background: var(--bg-2); border-color: var(--bronze-3); }
.btn.small { padding: 8px 14px; font-size: 12px; }

/* ============ CARDS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,165,114,0.12), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-2px); border-color: var(--bronze-3); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; color: var(--ink); }
.card p { color: var(--ink-2); font-size: 14px; }
.card .link {
  color: var(--bronze-1); font-size: 13px; font-weight: 600;
  display: inline-block; margin-top: 12px;
}

/* ============ PANEL HEADER ============ */
.panel-header {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.header-stats { display: flex; gap: 28px; }
.header-stats > div { display: flex; flex-direction: column; align-items: flex-end; }
.header-stats strong {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--bronze-1);
}
.header-stats span { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============ SPLIT LAYOUT ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.side {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px;
}
.side-title { font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 600; }

/* ============ PHONE FRAME ============ */
.phone-frame {
  background: linear-gradient(180deg, #0c1424, #04081a);
  border-radius: 36px; padding: 14px;
  border: 2px solid var(--line-2);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(232,201,144,0.06);
  max-width: 420px;
  justify-self: center;
  position: relative;
}
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: #050402; border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #0e0c0a, #060504);
  border-radius: 26px; min-height: 620px; padding: 48px 18px 18px;
  display: flex; flex-direction: column;
}
.call-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.caller-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-deep));
  color: #0c1424; font-weight: 700; display: grid; place-items: center;
}
.caller-name { font-weight: 600; font-size: 14px; }
.caller-sub { font-size: 11px; color: var(--ink-3); }
.live-tag {
  margin-left: auto; padding: 4px 8px; font-size: 10px;
  background: rgba(217,104,82,0.18); color: var(--hot);
  border-radius: 6px; letter-spacing: 0.1em; font-weight: 700;
}
.chat-log {
  flex: 1; padding: 16px 4px; display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
}
.bubble {
  max-width: 78%; padding: 10px 14px; border-radius: 16px;
  font-size: 13px; line-height: 1.4; animation: drop 0.4s ease;
}
@keyframes drop { from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none} }
.bubble.user { align-self: flex-start; background: var(--bg-3); color: var(--ink-2); border-bottom-left-radius: 4px; }
.bubble.ai {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-3));
  color: #0c1424; border-bottom-right-radius: 4px; font-weight: 500;
}
.bubble .meta { display: block; font-size: 10px; opacity: 0.6; margin-top: 4px; }

.phone-actions { display: flex; gap: 6px; padding-top: 12px; border-top: 1px solid var(--line); }
.phone-btn {
  flex: 1; padding: 10px 8px; font-size: 11px; font-weight: 600;
  background: var(--bg-3); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
}
.phone-btn.primary {
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-3));
  color: #0c1424; border-color: transparent;
}

/* ============ TABLES ============ */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left; padding: 8px 12px; color: var(--ink-3);
  font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.data-table td {
  padding: 12px; border-bottom: 1px solid var(--line); color: var(--ink-2);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-2); }

.pill {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.pill.ok { background: rgba(109,185,114,0.15); color: var(--ok); }
.pill.warn { background: rgba(224,160,80,0.15); color: var(--warn); }
.pill.mute { background: var(--bg-3); color: var(--ink-3); }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 10px 0 10px 28px; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid var(--line); position: relative;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  color: #0c1424; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

/* ============ INVENTORY ============ */
.inv-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}
.inv-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; position: relative;
}
.inv-card.low { border-color: var(--hot); }
.inv-card.low::after {
  content: "REORDER"; position: absolute; top: 12px; right: 12px;
  background: var(--hot); color: white; font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.1em;
}
.inv-emoji { font-size: 24px; margin-bottom: 4px; }
.inv-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.inv-sub { font-size: 11px; color: var(--ink-3); margin-bottom: 10px; }
.inv-meter {
  height: 6px; background: var(--bg-3); border-radius: 4px; overflow: hidden; margin-bottom: 8px;
}
.inv-meter > span {
  display: block; height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--bronze-3), var(--bronze-1));
}
.inv-card.low .inv-meter > span { background: linear-gradient(90deg, var(--hot), #e8a89c); }
.inv-foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-2); }

.row-end { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }

/* ============ ROSTER ============ */
.roster-wrap {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.roster-head, .roster-row {
  display: grid; grid-template-columns: 220px repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}
.roster-row:last-child { border-bottom: none; }
.roster-head { background: var(--bg-2); }
.rh-name {
  padding: 14px 16px; font-size: 13px; font-weight: 600;
  border-right: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.rh-day {
  padding: 12px 14px; font-size: 12px; color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 0.08em; border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.rh-day:last-child { border-right: none; }
.rh-day.hot { color: var(--bronze-1); }
.hot-tag {
  background: rgba(217,104,82,0.18); color: var(--hot); font-size: 9px;
  padding: 2px 6px; border-radius: 4px; font-weight: 700; letter-spacing: 0.06em;
}
.shift {
  padding: 14px 14px; font-size: 12px; color: var(--ink-2);
  border-right: 1px solid var(--line); position: relative;
}
.shift:last-child { border-right: none; }
.shift.peak { background: linear-gradient(180deg, rgba(201,165,114,0.06), transparent); color: var(--ink); }
.shift.suggest { background: rgba(232,201,144,0.1); color: var(--bronze-1); font-weight: 600; }
.suggest-tag {
  margin-left: 6px; font-size: 9px; padding: 1px 5px; border-radius: 3px;
  background: var(--bronze-2); color: #0c1424; font-weight: 700;
}
.roster-row.totals { background: var(--bg-2); font-weight: 600; }
.roster-row.totals .shift { color: var(--ink); }
.avatar {
  width: 26px; height: 26px; border-radius: 50%; font-size: 11px;
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-deep));
  color: #0c1424; font-weight: 700; display: grid; place-items: center;
}

.advice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.advice-card {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2); border-radius: 12px; padding: 18px;
}
.advice-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-3));
  color: #0c1424; margin-bottom: 10px;
}
.advice-card p { color: var(--ink-2); font-size: 14px; }

/* ============ MENU ============ */
.menu-toolbar { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; font-size: 13px; font-weight: 500; cursor: pointer;
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 100px;
  font-family: inherit;
}
.chip.active, .chip:hover {
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  color: #0c1424; border-color: transparent;
}

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.dish {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.dish:hover { transform: translateY(-2px); border-color: var(--bronze-3); }
.dish-img {
  height: 160px;
  display: grid; place-items: center; font-size: 60px;
  position: relative;
}
.dish-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.dish-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(10,8,7,0.75); color: var(--bronze-1);
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600;
  backdrop-filter: blur(8px);
}
.dish-body { padding: 16px; }
.dish-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.dish-desc { font-size: 12px; color: var(--ink-3); margin-bottom: 12px; line-height: 1.5; }
.dish-foot { display: flex; justify-content: space-between; align-items: center; }
.dish-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--bronze-1); }
.dish-add {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  color: #0c1424; font-size: 18px; font-weight: 700;
}

.cart-bar {
  position: sticky; bottom: 20px; margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 14px 14px 14px 28px;
  box-shadow: var(--shadow);
}
.cart-bar strong { color: var(--ink); }
.cart-bar .muted { color: var(--ink-3); font-size: 12px; margin-left: 12px; }
.cart-total { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--bronze-1); }

/* ============ RESERVATIONS / FLOOR ============ */
.floor { background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.floor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 100px);
  gap: 14px;
}
.table {
  border-radius: 10px; padding: 14px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.table small { font-weight: 400; color: var(--ink-3); margin-top: 4px; font-size: 11px; }
.table.free { background: var(--bg-3); color: var(--ink-3); border: 1px dashed var(--line-2); }
.table.booked {
  background: rgba(201,165,114,0.12); color: var(--bronze-1);
  border: 1px solid var(--bronze-3);
}
.table.booked small { color: var(--ink-2); }
.table.seated {
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-deep));
  color: #0c1424; border: 1px solid var(--bronze-1);
}
.table.seated small { color: rgba(12,20,36,0.7); }

.legend { display: flex; gap: 20px; margin-top: 20px; font-size: 12px; color: var(--ink-3); }
.dot-sq { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }
.dot-sq.free { background: var(--bg-3); border: 1px dashed var(--line-2); }
.dot-sq.booked { background: rgba(201,165,114,0.4); border: 1px solid var(--bronze-3); }
.dot-sq.seated { background: var(--bronze-2); }

/* ============ WEBSITE ADVICE ============ */
.advice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ad-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; position: relative;
}
.ad-card h3 { margin: 8px 0; color: var(--ink); }
.ad-card p { font-size: 14px; color: var(--ink-2); }
.pri {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.pri-high .pri { background: rgba(217,104,82,0.18); color: var(--hot); }
.pri-med .pri { background: rgba(224,160,80,0.18); color: var(--warn); }
.pri-low .pri { background: rgba(109,185,114,0.18); color: var(--ok); }
.effort { margin-top: 14px; font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 10px; }

.cta-band {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(232,201,144,0.08), rgba(160,126,68,0.03));
  border: 1px solid var(--line-2); border-radius: 14px;
}
.cta-band h3 { font-size: 24px; color: var(--ink); }
.cta-band p { color: var(--ink-2); margin-top: 4px; max-width: 480px; font-size: 14px; }

/* ============ FOOTER ============ */
.foot {
  display: flex; justify-content: space-between;
  padding: 24px 32px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
}

/* ============ BRAND ICONS ============ */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.card-icon {
  width: 38px; height: 38px; display: block; margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(232,201,144,0.18));
}
.dish-icon { width: 64px; height: 64px; z-index: 1; position: relative; opacity: 0.92; }
.inv-icon { width: 26px; height: 26px; display: block; margin-bottom: 6px; opacity: 0.85; }

.card-feature {
  background: linear-gradient(135deg, rgba(232,201,144,0.08), var(--bg-1));
  border-color: var(--line-2);
}

/* ============ ROI CALCULATOR ============ */
.roi-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 20px;
  align-items: start;
}

.roi-config {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 24px;
  position: sticky; top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.roi-config::-webkit-scrollbar { width: 6px; }
.roi-config::-webkit-scrollbar-track { background: transparent; }
.roi-config::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.config-hint { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }

.config-block { margin-bottom: 18px; }
.config-block label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 13px; color: var(--ink-2);
}
.config-block .val {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Range slider, bronze themed */
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  background: var(--bg-3); border-radius: 4px; outline: none;
  background-image: linear-gradient(90deg, var(--bronze-2), var(--bronze-1));
  background-repeat: no-repeat;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  border: 2px solid #0c1424; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  border: 2px solid #0c1424; cursor: pointer;
}

.task-row {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 10px;
  transition: all 0.2s;
}
.task-row.off { opacity: 0.45; }
.task-row.on { border-color: rgba(201,165,114,0.35); }

.task-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.switch { position: relative; width: 34px; height: 18px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span {
  position: absolute; inset: 0; background: var(--bg-3);
  border-radius: 20px; cursor: pointer; transition: 0.2s;
}
.switch span::before {
  content: ""; position: absolute; left: 2px; top: 2px;
  width: 14px; height: 14px; background: var(--ink-3); border-radius: 50%;
  transition: 0.2s;
}
.switch input:checked + span { background: linear-gradient(135deg, var(--bronze-2), var(--bronze-3)); }
.switch input:checked + span::before { transform: translateX(16px); background: #0c1424; }
.task-name { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; }
.task-save {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--bronze-1); font-weight: 600;
}
.task-sub { font-size: 11px; color: var(--ink-3); margin-bottom: 6px; }
.task-sub strong { color: var(--bronze-2); }
.task-foot {
  display: flex; justify-content: space-between; font-size: 11px;
  color: var(--ink-3); margin-top: 4px;
}

/* Results column */
.roi-results { display: flex; flex-direction: column; gap: 16px; }

.compare-card {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: 14px;
  padding: 28px;
}
.cmp-side { text-align: center; }
.cmp-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px;
}
.cmp-val {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 52px; line-height: 1;
}
.cmp-side.bad .cmp-val { color: var(--hot); }
.cmp-side.good .cmp-val {
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cmp-sub { font-size: 12px; color: var(--ink-3); margin-top: 6px; }
.cmp-arrow {
  display: grid; place-items: center; padding: 0 8px;
  opacity: 0.6;
}

.chart-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px;
}
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.chart-title { font-size: 16px; color: var(--ink); font-family: 'Inter', sans-serif; font-weight: 600; }
.chart-sub { font-size: 11px; color: var(--ink-3); }

/* Bar comparison */
.bars-compare {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  height: 240px; align-items: end;
}
.bar-item { display: flex; flex-direction: column; align-items: center; height: 100%; }
.bar-bg {
  flex: 1; width: 100%; max-width: 100px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-radius: 8px 8px 0 0; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.bar-fill {
  width: 100%; border-radius: 8px 8px 0 0;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.bar-item.bad .bar-fill { background: linear-gradient(180deg, var(--hot), rgba(217,104,82,0.4)); }
.bar-item.good .bar-fill { background: linear-gradient(180deg, var(--ok), rgba(109,185,114,0.4)); }
.bar-item.save .bar-fill { background: linear-gradient(180deg, var(--bronze-1), var(--bronze-3)); }
.bar-label {
  text-align: center; margin-top: 12px;
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase;
}
.bar-label strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--ink); margin-top: 4px; text-transform: none;
  letter-spacing: 0;
}
.bar-item.save .bar-label strong {
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Donut */
.donut-wrap {
  position: relative; width: 280px; height: 280px; margin: 0 auto;
}
.donut-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-svg circle { transition: stroke-dasharray 0.6s ease, stroke-dashoffset 0.6s ease; }
.donut-center {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; pointer-events: none;
}
.dc-label { font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.dc-val {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.donut-legend {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
}
.legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-2);
}
.legend-swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.legend-val { margin-left: auto; color: var(--ink); font-weight: 600; }

/* Line chart */
.line-svg { width: 100%; height: 220px; display: block; }

.roi-cta { margin-top: 4px; }
.five-yr { font-size: 56px !important; line-height: 1; margin: 4px 0 10px; }

/* ============ BOOKING MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
}
.modal-card {
  position: relative; max-width: 640px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2); border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
  animation: modalIn 0.28s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-3); color: var(--ink-2);
  border: 1px solid var(--line); font-size: 20px; cursor: pointer;
  display: grid; place-items: center; line-height: 1;
  transition: all 0.15s;
}
.modal-close:hover { color: var(--ink); border-color: var(--bronze-3); }
.modal-head { margin-bottom: 22px; }
.modal-head h3 {
  font-size: 28px; margin: 4px 0 8px;
  font-family: 'Cormorant Garamond', serif;
}
.modal-head p { color: var(--ink-2); font-size: 14px; }

.quick-contact {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 22px;
}
.qc-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); transition: all 0.18s;
}
.qc-card:hover {
  border-color: var(--bronze-3); transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(232,201,144,0.06), var(--bg-3));
}
.qc-card .icon { width: 22px; height: 22px; flex-shrink: 0; }
.qc-card strong { display: block; font-size: 13px; line-height: 1.2; }
.qc-card span { font-size: 11px; color: var(--ink-3); line-height: 1.3; }

.modal-divider {
  text-align: center; margin: 6px 0 22px; position: relative;
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.modal-divider span { background: var(--bg-2); padding: 0 12px; position: relative; z-index: 1; }
.modal-divider::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--line);
}

.book-form .ff-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px;
}
.book-form label {
  display: block; font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%; margin-top: 6px;
  padding: 11px 14px; background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 14px;
  text-transform: none; letter-spacing: 0;
  transition: border-color 0.15s;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--bronze-2);
}
.book-form textarea { resize: vertical; min-height: 60px; }
.book-form button { width: 100%; margin-top: 14px; }
.book-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { font-size: 13px; margin-top: 14px; text-align: center; min-height: 20px; }
.form-status.success { color: var(--ok); }
.form-status.error { color: var(--hot); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .topbar { padding: 12px 14px; gap: 8px; }
  .nav-tabs { display: none; }
  .brand-sub { display: none; }
  .hamburger { display: flex; }
  .btn-book-nav { padding: 7px 14px; font-size: 11px; }
  main { padding: 24px 16px 60px; }
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .advice-grid, .split, .advice-row { grid-template-columns: 1fr; }
  .roster-head, .roster-row { grid-template-columns: 140px repeat(6, minmax(70px, 1fr)); font-size: 11px; }
  .panel-header { flex-direction: column; align-items: flex-start; }
  .header-stats { width: 100%; justify-content: space-between; }
  .floor-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-config { position: static; max-height: none; }
  .compare-card { grid-template-columns: 1fr; text-align: center; }
  .cmp-arrow { transform: rotate(90deg); }
  .bars-compare { gap: 12px; }
  .bar-label strong { font-size: 18px; }
  .five-yr { font-size: 40px !important; }
  .donut-legend { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
  .book-form .ff-row { grid-template-columns: 1fr; }
  .modal-card { padding: 22px; max-height: 96vh; border-radius: 14px; }
  .modal { padding: 12px; }
  .modal-head h3 { font-size: 22px; }
  h1 { font-size: 34px; }
  h2 { font-size: 24px; }
  .panel-header { padding-bottom: 18px; margin-bottom: 24px; }
  .header-stats { gap: 12px; }
  .header-stats strong { font-size: 22px; }
  .hero { padding: 24px 0 12px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .trust-row { gap: 18px; flex-wrap: wrap; }
  .trust-row strong { font-size: 24px; }
  .menu-toolbar { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .chip { white-space: nowrap; }
  .cart-bar { flex-direction: column; gap: 12px; border-radius: 18px; padding: 16px; text-align: center; }
  .cart-bar .btn { width: 100%; }
  .cmp-val { font-size: 38px; }
  .phone-frame { max-width: 100%; }
}
