:root {
  --ink: #012c34;
  --ink-soft: #66777a;
  --paper: #f7f5f0;
  --paper-2: #eafbcf;
  --gold: #02414c;
  --gold-2: #a2ed09;
  --cream: #f7f5f0;
  --accent: #a2ed09;
  --alert: #e85d4a;
  --line: rgba(1, 44, 52, 0.12);
  --shadow: 0 18px 50px rgba(1, 44, 52, 0.1);
  --shadow-hover: 0 22px 40px rgba(1, 44, 52, 0.14);
  --sans: "Manrope", "Noto Sans", "Segoe UI", sans-serif;
  --serif: "Manrope", "Noto Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(2, 65, 76, 0.12), transparent 55%),
    radial-gradient(700px 360px at 100% 0%, rgba(162, 237, 9, 0.12), transparent 46%),
    var(--paper);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page {
  min-height: 100vh;
  padding-bottom: 56px;
}

body.has-dock .page,
body.has-dock .review {
  padding-bottom: 92px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
}

.brand-venue {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong,
.brand-stack strong {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--ink-soft);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 18px;
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(234, 251, 207, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.admin-nav a:hover {
  border-color: var(--accent);
}

.admin-nav a.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn,
.btn-ghost,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn-gold:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-gold:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 2px;
}

.btn {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
}

.btn-gold {
  background: var(--accent);
  color: var(--ink);
}

.hero {
  padding: 20px 0 36px;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.5;
}

.cards,
.catalog-grid,
.desk-tables {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.card,
.catalog-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(1, 44, 52, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover,
.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fav-form {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  z-index: 2;
}

.fav-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #c9b79a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(1, 44, 52, 0.12);
}

.fav-btn.is-on {
  color: #e85d4a;
}

.card-photo,
.catalog-photo,
.venue-cover {
  background-color: #c9b79a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-photo {
  height: 176px;
  background-image:
    linear-gradient(180deg, rgba(1, 44, 52, 0.04), rgba(1, 44, 52, 0.32)),
    var(--photo, #c9b79a);
}

.card-body,
.catalog-body {
  padding: 16px 18px 18px;
}

.card-body .badge,
.catalog-body .badge,
.venue-head .badge {
  margin-bottom: 8px;
}

.card-addr {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.card-body h2 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
}

.card-body .muted {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.45;
}

.muted {
  color: var(--ink-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel {
  padding: 8px 0 8px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.kpi {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.kpi b {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
}

.table-wrap {
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

tr:last-child td {
  border-bottom: 0;
}

tr.row-link {
  cursor: pointer;
}

tr.row-link:hover td {
  background: var(--paper-2);
}

tr.row-link a.row-fill {
  display: block;
  color: inherit;
  text-decoration: none;
}

tr.row-link td:first-child a.row-fill {
  font-weight: 700;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0 12px;
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.form + .form {
  margin-top: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.prompt-box {
  min-height: 140px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.prompt-box.is-tall {
  min-height: 240px;
}

.prompt-stat {
  font-weight: 500;
}

.token-meta {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.mono {
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bulk-form {
  max-width: none;
}

.bulk-group {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.bulk-group + .bulk-group {
  margin-top: 8px;
}

.bulk-preview {
  max-width: 360px;
  height: 180px;
  background-size: contain;
  background-repeat: no-repeat;
}

.bulk-rows {
  display: grid;
  gap: 12px;
}

.bulk-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: var(--paper-2);
}

.bulk-row .bulk-wide {
  grid-column: 1 / -1;
}

.bulk-row .bulk-remove {
  justify-self: start;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.check-line input {
  width: 20px;
  min-height: 20px;
}

.error,
.ok {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.error {
  background: #fde8e4;
  color: #8a2f24;
}

.ok {
  background: #e4f0e2;
  color: #24522a;
}

.photo-preview {
  width: 100%;
  max-width: 520px;
  height: 220px;
  margin: 0 0 16px;
  border-radius: 18px;
  background: #012c34 center / cover no-repeat;
}

.scan-video {
  display: none;
  width: 100%;
  max-height: 280px;
  margin: 0 0 10px;
  border-radius: 18px;
  background: #012c34;
  object-fit: cover;
}

.scan-video.is-on {
  display: block;
}

.file-btn {
  position: relative;
  overflow: hidden;
}

.file-btn input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.login .form {
  width: min(420px, 100%);
}

.review {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--cream);
  background: #012c34 center / cover no-repeat;
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 44, 52, 0.18) 0%, rgba(1, 44, 52, 0.72) 62%, rgba(1, 44, 52, 0.9) 100%);
}

.review-bar {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

.brand-on-dark .brand-logo {
  height: 32px;
}

.brand-on-dark span {
  color: rgba(247, 245, 240, 0.72);
}

.review-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top, 0px)) 0 max(32px, env(safe-area-inset-bottom, 0px));
}

.review-city {
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.8;
}

.review h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.review-lead {
  margin: 0 0 28px;
  max-width: 32ch;
  font-size: 17px;
  line-height: 1.45;
  opacity: 0.88;
}

.review-desc {
  margin: 0 0 24px;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.9;
}

.review-buttons {
  display: grid;
  gap: 10px;
}

.review-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 8px 14px;
  border: 0;
  border-radius: 14px;
  background: rgba(247, 245, 240, 0.96);
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.review-buttons form {
  margin: 0;
}

.tbl-ico {
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.tbl-ico svg {
  width: 20px;
  height: 20px;
}

.review-btn.is-call .tbl-ico {
  color: var(--alert);
}

.review-btn.is-chat .tbl-ico {
  color: var(--gold);
}

.review-btn-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
  min-width: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ink);
  text-align: left;
}

.review-btn-text small {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 13px;
}

.review-btn > span:not(.review-btn-text) {
  margin-left: auto;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.review-note {
  margin: 18px 0 0;
  font-size: 13px;
  opacity: 0.7;
}

.review-back {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.92);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.review.chat-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding-bottom: var(--kb, 0px);
}

.chat-page > .review-back {
  position: absolute;
  top: max(16px, env(safe-area-inset-top, 0px));
  left: 16px;
  z-index: 3;
  margin: 0;
}

.preview-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 245, 240, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.qr-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.qr-box img {
  width: 220px;
  border-radius: 16px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero .form-actions {
  margin-top: 18px;
}

.biz-hero {
  padding-bottom: 8px;
}

.biz-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 8px 0 28px;
}

.biz-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin: 0 0 40px;
}

.biz-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}

.biz-copy p,
.biz-copy li {
  color: var(--ink-soft);
  line-height: 1.5;
}

.biz-copy ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.shot {
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shot-wide {
  min-width: 0;
}

.shot-bar {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.shot-stars {
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
}

.shot-quote {
  margin: 10px 0 8px;
  font-weight: 600;
}

.shot-meta {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.shot-row {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 13px;
}

.shot-row i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--paper);
}

.shot-row i u {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--gold);
}

.shot-ai {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--paper);
  font-size: 14px;
}

.shot-ai-q {
  background: var(--paper-2);
  margin-left: 24px;
}

.shot-table > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.biz-chart {
  height: 140px;
}

.biz-cta {
  padding: 28px 24px;
  margin: 12px 0 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.biz-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.copy-row {
  display: flex;
  gap: 8px;
  margin: 8px 0 16px;
}

.copy-row input {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 13px;
}

.empty {
  padding: 22px;
  color: var(--ink-soft);
}

.period-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.period-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.period-nav a.is-on {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chart-grid-tables {
  margin-top: 8px;
}

.chart-board {
  min-width: 0;
  padding: 18px 18px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.chart-board h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.chart-cols {
  display: flex;
  align-items: stretch;
  gap: 4px;
  height: 168px;
}

.chart-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.chart-col em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
}

.chart-col i {
  display: block;
  width: 100%;
  max-width: 22px;
  min-height: 3px;
  height: 3px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.chart-col span {
  font-size: 10px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.chart-bars {
  display: grid;
  gap: 10px;
}

.chart-bar {
  display: grid;
  grid-template-columns: 76px 1fr 36px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.chart-bar em {
  font-style: normal;
  color: var(--ink-soft);
}

.chart-bar b {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.chart-bar i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--paper);
}

.chart-bar i u {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--gold);
}

.chart-bar.is-weak i u {
  background: var(--alert);
}

.cell-wrap {
  white-space: normal;
  max-width: 420px;
}

.table-no {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 500;
}

.table-ok {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

.table-ticket {
  margin: 0 0 16px;
  padding: 14px 16px 12px;
  border-radius: 18px;
  background: rgba(247, 245, 240, 0.96);
  color: var(--ink);
}

.table-ticket-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.table-ticket-sum {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
}

.table-ticket-lines a {
  color: inherit;
  text-underline-offset: 2px;
}

.order-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.order-pick .check {
  flex: 1;
  margin: 0;
}

.order-pick-open {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.table-ticket-head small,
.table-ticket-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.table-ticket-order + .table-ticket-order {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.table-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.table-ticket-lines {
  margin: 0;
  padding: 0;
  list-style: none;
}

.table-ticket-lines li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
}

.st {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  background: rgba(1, 44, 52, 0.06);
}

.st-new {
  color: #3e6ea0;
  background: rgba(62, 110, 160, 0.12);
}

.st-cooking {
  color: #02414c;
  background: rgba(162, 237, 9, 0.22);
}

.st-served {
  color: #2f6b3a;
  background: rgba(47, 107, 58, 0.12);
}

.menu-text {
  white-space: pre-wrap;
  margin: 0 0 22px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
}

.chat-page .chat-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.chat-page h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
}

.chat-log {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.chat-compose {
  flex: 0 0 auto;
  padding: 8px 0 max(12px, env(safe-area-inset-bottom, 0px));
}

.chat-msg {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: auto;
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.4;
}

.chat-msg:has(.voice-play) {
  min-width: min(88%, 248px);
}

.chat-msg.is-bot {
  background: rgba(247, 245, 240, 0.94);
  color: var(--ink);
}

.chat-msg.is-user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--cream);
}

.dish-cards {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.dish-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 6px;
  border-radius: 14px;
  background: rgba(1, 44, 52, 0.06);
  color: inherit;
  text-decoration: none;
}

.chat-msg.is-user .dish-card {
  background: rgba(247, 245, 240, 0.16);
}

.dish-card-photo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #02414c center / cover no-repeat;
}

.dish-card b {
  display: block;
  font-size: 14px;
}

.dish-card small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-weight: 600;
}

.chat-msg.is-user .dish-card small {
  color: rgba(247, 245, 240, 0.8);
}

.chat-form {
  display: flex;
  gap: 8px;
}

.chat-form input {
  flex: 1;
  min-width: 0;
  background: rgba(247, 245, 240, 0.94);
}

.chat-form .btn,
.chat-form .btn-ghost,
.chat-form .chat-go {
  flex: 0 0 auto;
}

.chat-go {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  touch-action: manipulation;
  user-select: none;
}

.chat-go.is-send {
  font-size: 26px;
}

.chat-go.is-rec {
  background: var(--alert);
  color: var(--cream);
}

.chat-hint {
  min-height: 18px;
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.voice-meter {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.94);
  border: 1px solid var(--line);
}

.voice-meter.is-on {
  display: flex;
}

.voice-meter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 0 0 rgba(232, 93, 74, 0.45);
  animation: voice-pulse 1.1s ease-out infinite;
}

.voice-meter-label {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.voice-meter-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  flex: 1;
}

.voice-meter-bars i {
  display: block;
  flex: 1;
  height: 100%;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleY(0.1);
  transform-origin: center bottom;
  transition: transform 90ms linear;
}

@keyframes voice-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 74, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(232, 93, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 74, 0); }
}

.chat-form .file-btn {
  position: relative;
}

.voice-play {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  background: transparent;
}

.voice-play audio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.voice-play-btn {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  cursor: pointer;
}

.chat-msg.is-bot .voice-play-btn {
  background: var(--gold);
  color: var(--cream);
}

.voice-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
}

.voice-play.is-on .voice-play-icon {
  width: 10px;
  height: 12px;
  margin: 0;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) left center / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) right center / 3px 100% no-repeat;
}

.voice-play-track {
  flex: 1;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 44, 52, 0.12);
  cursor: pointer;
}

.chat-msg.is-user .voice-play-track {
  background: rgba(247, 245, 240, 0.28);
}

.voice-play-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--cream);
}

.chat-msg.is-bot .voice-play-fill {
  background: var(--gold);
}

.chat-form .btn-ghost {
  background: rgba(247, 245, 240, 0.94);
}

.voice-file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.map-box {
  height: 360px;
  margin: 0 0 28px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dce6e4;
  box-shadow: var(--shadow);
}

.map-box.is-single {
  height: 260px;
}

.place-map {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #dce6e4;
  box-shadow: var(--shadow);
}

.place-map .map-box {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.place-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.place-map-cap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0;
  padding: 10px 14px 12px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
}

.place-map-cap a {
  color: var(--gold);
  font-weight: 700;
}

.review .place-map {
  margin: 8px 0 18px;
  box-shadow: none;
}

.review-write.is-asst {
  outline: 2px solid var(--accent);
}

.leaflet-container {
  font-family: var(--sans);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border-radius: 14px;
}

.venue-cover {
  position: relative;
  height: 320px;
  margin: 0 0 22px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.venue-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(transparent, rgba(20, 17, 14, 0.28));
}

.venue-head {
  margin-bottom: 22px;
}

.venue-head h1 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 500;
  line-height: 0.95;
}

.venue-lead {
  max-width: 62ch;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.venue-note {
  margin: 8px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.group-title {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.catalog-photo {
  height: 160px;
}

.catalog-body h3 {
  margin: 6px 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.catalog-body p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-price {
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 700;
}

.kbju {
  font-size: 13px;
  color: var(--ink-soft);
}

.catalog-video {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
}

.checks {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checks legend {
  margin-bottom: 6px;
  font-weight: 700;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.check input {
  width: auto;
  min-height: 0;
}

.form .check {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--paper);
}

.inline-form {
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.inline-form select {
  width: auto;
  min-width: 128px;
  min-height: 40px;
}

.guest-review {
  margin: 28px 0 12px;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
}

.guest-review-head h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.review-lock {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-lock a {
  color: var(--gold);
  font-weight: 700;
}

.review-write {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8, #f7f0e4);
  border: 1px solid rgba(176, 137, 74, 0.18);
}

.review-voice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.review-voice-status {
  min-height: 1.2em;
  margin: 0;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-actions .btn {
  flex: 1;
}

.review-mic {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.review-mic svg {
  width: 22px;
  height: 22px;
}

.review-mic.is-rec,
.review-voice .is-rec {
  border-color: var(--alert);
  color: var(--alert);
  background: #fff5f5;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  text-align: center;
}

.staff-card img,
.staff-card-empty,
.staff-hero-photo,
.staff-hero-empty {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.staff-card-empty,
.staff-hero-empty {
  display: grid;
  place-items: center;
  background: #02414c;
  color: #a2ed09;
  font-weight: 800;
}

.staff-card b {
  font-size: 14px;
}

.staff-card small {
  color: var(--ink-soft);
}

.staff-hero {
  display: flex;
  align-items: center;
  gap: 16px;
}

.staff-hero-photo,
.staff-hero-empty {
  width: 88px;
  height: 88px;
  font-size: 28px;
}

.review .staff-panel {
  margin: 0 0 18px;
  padding: 14px 16px;
  background: rgba(247, 245, 240, 0.94);
  color: var(--ink);
}

.cab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 22px;
}

.cab-nav a {
  font-weight: 700;
  color: var(--gold);
}

.cab-profile {
  max-width: 520px;
}

.cab-avatar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cab-avatar img,
.cab-avatar-empty {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.cab-avatar-empty {
  display: grid;
  place-items: center;
  background: #02414c;
  color: #a2ed09;
  font-size: 32px;
  font-weight: 800;
}

.cab-list {
  display: grid;
  gap: 12px;
}

.cab-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.cab-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cab-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.asst {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.asst.is-open {
  inset: 0;
  width: auto;
  height: auto;
}

.asst-scrim {
  position: absolute;
  inset: 0;
  display: none;
  padding: 0;
  border: 0;
  background: rgba(1, 44, 52, 0.28);
  cursor: pointer;
  pointer-events: auto;
}

.asst-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 81;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #02414c;
  background: #a2ed09;
  box-shadow: 0 10px 28px rgba(2, 65, 76, 0.28);
  cursor: pointer;
  pointer-events: auto;
}

.asst-fab svg {
  width: 24px;
  height: 24px;
}

.asst-panel,
.asst-scrim {
  display: none;
}

.asst.is-open .asst-fab {
  display: none;
}

.asst.is-open .asst-scrim {
  display: block;
}

.asst.is-open .asst-panel {
  display: flex;
}

.asst-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 82;
  flex-direction: column;
  width: min(360px, calc(100% - 32px));
  height: min(72vh, 560px);
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(2, 65, 76, 0.28);
  border: 1px solid rgba(1, 44, 52, 0.08);
  pointer-events: auto;
}

.asst-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  background: #02414c;
  color: #fff;
}

.asst-head b {
  display: block;
  font-size: 16px;
}

.asst-head small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
}

.asst-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.asst-log {
  flex: 1 1 auto;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 8px;
}

.asst-msg {
  max-width: 92%;
  padding: 9px 12px;
  border-radius: 14px;
  line-height: 1.4;
  font-size: 14px;
}

.asst-msg.is-bot {
  align-self: flex-start;
  background: #eef4f3;
}

.asst-msg.is-user {
  align-self: flex-end;
  color: #02414c;
  background: #a2ed09;
}

.asst-form {
  display: flex;
  gap: 8px;
  padding: 0 12px 10px;
}

.asst-form input {
  flex: 1 1 auto;
  min-width: 0;
}

.asst-go {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--accent);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.asst-go.is-send {
  font-size: 26px;
}

.asst-go.is-rec {
  background: var(--alert);
  color: var(--cream);
}

.asst-hint {
  min-height: 1.2em;
  margin: 0;
  padding: 0 14px 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.star-slide {
  display: grid;
  justify-items: start;
  gap: 8px;
  width: max-content;
}

.star-slide-caption {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.star-slide-caption b {
  color: var(--gold);
}

.star-slide-box {
  position: relative;
  display: inline-block;
  width: max-content;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.14em;
  user-select: none;
}

.star-slide-base,
.star-slide-fill {
  display: block;
  margin-right: -0.14em;
}

.star-slide-base {
  color: rgba(176, 137, 74, 0.28);
}

.star-slide-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
  pointer-events: none;
  width: 100%;
}

.star-slide-box input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-card {
  padding: 14px 16px 15px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(1, 44, 52, 0.06);
  box-shadow: 0 10px 28px rgba(12, 10, 8, 0.08);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.review-card-top time {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1;
}

.review-card-dish {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(162, 237, 9, 0.22);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.review .guest-review {
  border-top-color: rgba(247, 245, 240, 0.18);
}

.review .guest-review-head h2 {
  color: var(--cream);
}

.review .review-lock {
  color: rgba(247, 245, 240, 0.72);
}

.review .review-lock a {
  color: var(--gold-2);
}

.freq-list {
  display: grid;
  gap: 8px;
}

.freq-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
}

.freq-row span {
  color: var(--ink);
}

.freq-row b {
  flex: 0 0 auto;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.admin-chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.admin-chat-log .chat-msg time {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  opacity: 0.7;
}

.admin-chat-log .voice-play {
  margin-bottom: 8px;
}

.type-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}

.type-filter button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.type-filter button.is-on {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.venue-group {
  display: none;
  margin: 0 0 32px;
}

.venue-group.is-on {
  display: block;
}

.venue-group h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
}

.chat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-title h1 {
  margin: 0;
}

.voice-mode {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 240, 0.35);
  background: rgba(247, 245, 240, 0.16);
  color: var(--cream);
  font-weight: 700;
}

.voice-mode.is-on {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.table-guest h1 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
}

.table-guest .table-ticket {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-text.light {
  background: #fff;
  border: 1px solid var(--line);
}

.desk {
  min-height: 100vh;
  padding: 20px 22px 36px;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(162, 237, 9, 0.12), transparent 50%),
    #012c34;
  color: var(--cream);
}

.desk-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.desk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.desk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desk-bar strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
}

.desk-bar span {
  color: rgba(247, 245, 240, 0.72);
}

.desk-bar .btn-ghost {
  color: var(--cream);
  border-color: rgba(247, 245, 240, 0.28);
}

.desk-bar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.desk-alert {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--gold);
  font-weight: 700;
}

.desk-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.desk-kpi {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.08);
}

.desk-kpi b {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 32px;
}

.desk h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.desk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.desk-call,
.desk-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.96);
  color: var(--ink);
}

.desk-order {
  flex-direction: column;
  align-items: stretch;
}

.desk-lines {
  display: grid;
  gap: 6px;
}

.desk-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.desk-line span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.desk-call span,
.desk-order span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
}

.desk-order p {
  margin: 6px 0 0;
}

.desk-table {
  padding: 16px;
  border-radius: 18px;
  background: rgba(247, 245, 240, 0.08);
}

.desk-table h3 {
  margin: 4px 0 6px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.desk-table p {
  margin: 0 0 10px;
}

.desk-table.is-call {
  background: var(--accent);
  color: var(--ink);
}

.desk-table.is-order {
  outline: 2px solid var(--gold-2);
}

.desk-mark {
  margin-bottom: 10px;
  font-weight: 700;
}

.desk-mark.is-soft {
  font-weight: 500;
}

.desk .empty {
  color: rgba(247, 245, 240, 0.7);
}

.desk-table select,
.desk-order select {
  background: rgba(247, 245, 240, 0.96);
}

@media (max-width: 720px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .grid-2,
  .qr-box,
  .desk-split,
  .bulk-row {
    grid-template-columns: 1fr;
  }

  .topbar,
  .desk-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 8px;
  }

  .venue-cover {
    height: 220px;
    border-radius: 22px;
  }

  .cards,
  .catalog-grid,
  .desk-tables,
  .chart-grid,
  .biz-block {
    grid-template-columns: 1fr;
  }

  .review-btn span {
    text-align: left;
  }

  .chat-form {
    flex-wrap: nowrap;
  }

  .chat-form input {
    flex: 1 1 auto;
  }

  .chat-form .chat-go {
    flex: 0 0 52px;
  }

  th,
  td {
    white-space: normal;
  }

  .asst-fab {
    right: 12px;
    bottom: 12px;
  }

  .asst-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: min(70vh, 560px);
  }
}

.nfc-jump {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  background: #02414c;
  color: #eafbcf;
  font-family: var(--sans);
}

.nfc-jump p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.menu-group {
  display: none;
  margin: 0 0 28px;
}

.menu-group.is-on {
  display: block;
}

.catalog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-cart {
  padding: 0 14px 14px;
}

.card-cart .btn-ghost {
  width: 100%;
}

.photo-reel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 22px;
  border-radius: 28px;
}

.photo-reel-slide {
  flex: 0 0 min(100%, 720px);
  height: 320px;
  scroll-snap-align: start;
  border-radius: 28px;
  background: #c9b79a center / cover no-repeat;
  box-shadow: var(--shadow);
}

.photo-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}

.photo-edit-item {
  width: 140px;
}

.photo-edit-item .photo-preview {
  height: 100px;
  margin: 0 0 6px;
}

.cart-lines {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.cart-qty button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.guest-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 6px max(8px, env(safe-area-inset-bottom, 0px));
  background: rgba(247, 245, 240, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(1, 44, 52, 0.08);
}

.guest-dock a,
.guest-dock button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.guest-dock a.is-on,
.guest-dock button:focus {
  color: #02414c;
}

.guest-dock a.is-off {
  opacity: 0.4;
  pointer-events: none;
}

body.has-dock .asst-fab {
  display: none;
}

body.has-dock .asst.is-open .asst-panel {
  bottom: 72px;
}

.review .guest-dock {
  background: rgba(1, 44, 52, 0.92);
  border-top-color: rgba(247, 245, 240, 0.12);
}

.review .guest-dock a,
.review .guest-dock button {
  color: #eafbcf;
}
