/* NUU food corner — brand red from the storefront sign */

:root {
  --red: #d82930;
  --red-deep: #bf1e2e;
  --red-ink: #8b1218;
  --gold: #f5c400;
  --gold-2: #e89a10;
  --cream: #f3e6c9;
  --ink: #0a0a0a;
  --panel: #141414;
  --panel-2: #1b1b1b;
  --line: rgba(243, 230, 201, 0.14);
  --text: #f7f2ea;
  --muted: #b7afa3;
  --radius: 22px;
  --pill: 999px;
  --header: 108px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Anton", "Arial Black", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --caps: "Cinzel", "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul { list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
}

/* ---- Header / storefront sign ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(#0a0a0a 78%, rgba(10, 10, 10, 0));
  padding: 14px 0 10px;
}

.profile-page .site-header {
  background: #0a0a0a;
}
.profile-main {
  padding: 28px 0 80px;
}
.profile-head {
  margin-bottom: 28px;
}
.profile-head h1 {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin: 8px 0 12px;
}
.profile-auth-card {
  max-width: 420px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.profile-orders-h {
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 28px;
  margin: 8px 0 16px;
}
.orders-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.orders-table th,
.orders-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.orders-table th {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.orders-table tr:last-child td { border-bottom: 0; }
.orders-table td:first-child {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.table-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.table-history {
  color: var(--muted);
  font-size: 12px;
  max-width: 280px;
}
.table-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--gold);
}
.table-status.is-request { color: #f5c400; }
.table-status.is-accepted { color: #7dd3fc; }
.table-status.is-pending { color: #fbbf24; }
.table-status.is-ready { color: #86efac; }
.table-status.is-delivered { color: #93c5fd; }
.table-status.is-payout { color: #d8b4fe; }
.table-status.is-done { color: var(--muted); }
.table-status.is-cancelled { color: #fca5a5; }
.profile-strip-h {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.profile-strip-h h2 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-top: 4px;
}
.profile-auth {
  max-width: 420px;
}
.profile-lanes {
  display: grid;
  grid-template-columns: repeat(7, minmax(140px, 1fr));
  gap: 10px;
  overflow-x: auto;
}
.profile-lane {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  min-height: 140px;
}
.profile-lane h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lane-list {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
}
.lane-empty {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
#account-phone { color: var(--muted); font-size: 13px; }

@media (max-width: 560px) {
  .profile-lanes { grid-template-columns: 1fr; }
}

.sign {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.pill {
  background: var(--red);
  border-radius: var(--pill);
  min-height: 92px;
  display: flex;
  align-items: center;
}

.pill-left {
  justify-content: center;
  padding: 0 28px 0 18px;
  margin-right: -18px;
}

.pill-right {
  justify-content: flex-end;
  padding: 0 18px 0 28px;
  margin-left: -18px;
  gap: 4px;
}

.wordmark {
  height: 68px;
  width: auto;
}

.logo-orb {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 6px solid #000;
  overflow: hidden;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  background: var(--red-deep);
}
.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-link {
  color: #fff;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: var(--pill);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-on {
  background: rgba(0, 0, 0, 0.18);
  color: var(--gold);
}

.profile-mark-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.profile-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.profile-mark-lg {
  width: 40px;
  height: 40px;
}
.profile-mark-icon {
  width: 13px;
  height: 13px;
}
.profile-mark-lg .profile-mark-icon {
  width: 20px;
  height: 20px;
}
.profile-strip-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-tools {
  display: none;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
}
.icon-btn svg { width: 20px; height: 20px; }
.cart-btn,
.notice-btn { position: relative; }
.notice-link { position: relative; }
.notice-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.notice-link .notice-count {
  position: static;
  display: inline-grid;
  margin-left: 6px;
  min-width: 16px;
  height: 16px;
  font-size: 10px;
}
.notice-count.is-empty { display: none; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.cart-count.is-empty { display: none; }

.burger {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 50;
  padding: 90px 20px 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav nav {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  display: grid;
  gap: 4px;
}
.mobile-nav a,
.mobile-nav button {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 650;
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav button:hover { background: #222; color: var(--gold); }

/* ---- Brand stage: large logo + chicken ---- */

.brand-stage {
  position: relative;
  padding: 8px 0 12px;
  overflow: hidden;
}
.brand-stage::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 41, 48, 0.38), transparent 68%);
  pointer-events: none;
  animation: glow 5s ease-in-out infinite;
}

.brand-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(220px, 340px);
  gap: 8px 20px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: 16px;
  z-index: 1;
}
.brand-logo {
  width: min(248px, 46vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #000;
  background: var(--red-deep);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(245, 196, 0, 0.4);
  animation: orbPulse 3.2s ease-in-out infinite;
}
.brand-word-pill {
  background: var(--red);
  border-radius: var(--pill);
  padding: 10px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.brand-word {
  height: 48px;
  width: auto;
}

.hero {
  position: relative;
  padding: 28px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 41, 48, 0.38), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

section[id] {
  scroll-margin-top: 120px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 132px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 12px 0 18px;
}

.hero-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: #1a1200;
}
.btn-gold:hover { background: #ffd84a; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: #ef3a40; }

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.hero-stats div span {
  color: var(--muted);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 340px;
}
.shot {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid #0a0a0a;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  background: #111;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot-a { width: 58%; height: 250px; left: 0; top: 20px; z-index: 1; }
.shot-b { width: 52%; height: 220px; right: 0; top: 0; z-index: 2; }
.shot-c { width: 48%; height: 180px; right: 12%; bottom: 0; z-index: 3; }

.badge-float {
  position: absolute;
  z-index: 4;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--pill);
  left: 8%;
  bottom: 28px;
}

/* ---- Marquee ---- */

.marquee {
  background: var(--red);
  color: var(--gold);
  overflow: hidden;
  border-block: 1px solid #000;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 12px 0;
  font-family: var(--display);
  letter-spacing: 0.14em;
  font-size: 18px;
}
.marquee-track span { padding: 0 28px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sections ---- */

section { padding: 72px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-top: 8px;
}

.menu-stage {
  position: relative;
  padding: 0 0 56px;
  background:
    radial-gradient(ellipse 80% 52% at 50% 8%, rgba(216, 41, 48, 0.28), transparent 60%),
    var(--ink);
}
.menu-stage .wrap {
  width: min(980px, calc(100% - 28px));
  max-width: 100%;
}
.menu-stage .marquee {
  margin-bottom: 8px;
}
.menu-stage .marquee-track {
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.menu-stage .marquee-track span { padding: 0 18px; }

.courses {
  position: sticky;
  top: 112px;
  z-index: 24;
  padding: 4px 0 10px;
  background: linear-gradient(180deg, #0a0a0a 55%, rgba(10, 10, 10, 0.88) 100%);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 28px 0 8px;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
#menu .filters {
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  flex: none;
  flex-wrap: wrap;
  overflow-x: auto;
}
.filter {
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--pill);
  border: 0;
  color: var(--muted);
  font-family: var(--font);
  font-weight: 650;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}
#menu .filter {
  flex-direction: column;
  min-height: 0;
  padding: 0;
  gap: 4px;
  flex-shrink: 0;
  background: none;
  font-size: 9px;
  letter-spacing: 0.08em;
}
#menu .filter img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.filter svg { width: 18px; height: 18px; fill: currentColor; }
.filter:hover { color: var(--gold); }
#menu .filter:hover {
  background: none;
  color: var(--gold);
}
#menu .filter:hover img { transform: translateY(-3px); }
.filter.is-on,
#menu .filter.is-on {
  background: none;
  color: var(--gold);
}
#menu .filter.is-on img {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(245, 196, 0, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.45);
}

/* ---- Call band ----
   Under the courses, before the plates: the kitchen's number, sized
   to be read across a table and tapped without aiming. */
.call-band {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(#161210, #161210) padding-box,
    linear-gradient(120deg, #8a6a1a, #e8c76a 45%, #8a6a1a) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-band:hover,
.call-band:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.95);
}
.call-band-orb {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(216, 41, 48, 0.18);
}
.call-band-orb svg { width: 20px; height: 20px; }
.call-band-say {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.call-band-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.call-band-num {
  font-family: var(--mono);
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}
.call-band-go {
  margin-left: auto;
  padding: 8px 16px;
  border-radius: var(--pill);
  border: 1px solid rgba(243, 230, 201, 0.22);
  color: var(--cream);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.call-band:hover .call-band-go {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.folio {
  position: relative;
  padding: 48px 28px 40px;
  background:
    linear-gradient(#1a1412, #1a1412) padding-box,
    linear-gradient(180deg, #e8c76a, #8a6a1a 45%, #e8c76a) border-box;
  border: 1px solid transparent;
  box-shadow:
    inset 0 0 0 6px #120e0c,
    0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.folio::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 199, 106, 0.22);
  pointer-events: none;
}
.folio-orn {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.4em;
  margin-bottom: 8px;
}
.folio h2 {
  font-family: var(--caps);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 8px 0 10px;
}
.folio-lead {
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 4px;
}
.folio .kicker { justify-content: center; }

.menu-board {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  max-width: 100%;
}

.pass-plate {
  position: relative;
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: center;
  margin: 4px 0 18px;
}
.pass-waiter {
  position: absolute;
  left: -6px;
  top: 6px;
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  z-index: 3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  animation: miniBob 2.6s ease-in-out infinite;
}
.pass-ring {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #0a0a0a;
  background: #111;
  z-index: 2;
  justify-self: end;
  margin-right: -22px;
  padding: 0;
  box-shadow:
    0 0 0 3px var(--gold),
    0 14px 28px rgba(0, 0, 0, 0.45);
  animation: orbPulse 3.2s ease-in-out infinite;
}
.pass-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pass-ticket {
  position: relative;
  background: #f3ead8;
  color: #1a1208;
  border-radius: 14px;
  padding: 14px 16px 12px 32px;
  min-height: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.pass-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  transform: rotate(-12deg);
  opacity: 0.8;
  pointer-events: none;
}
.pass-cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a5a16;
  margin-bottom: 4px;
  padding-right: 72px;
}
.pass-ticket h2 {
  font-family: var(--display);
  font-size: clamp(20px, 3.2vw, 28px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 2px;
}
.pass-ticket .slip-act {
  margin-top: 8px;
  justify-content: flex-start;
}

.pass-rack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px 10px;
  padding-top: 28px;
}
.course-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 20px 0;
}
.pass-cta {
  width: min(280px, 100%);
  min-height: 42px;
  display: flex;
  margin: 18px auto 0;
}

.slip {
  position: relative;
  background:
    radial-gradient(circle at 10px 0, transparent 5px, #f3ead8 6px) top / 20px 10px repeat-x,
    #f3ead8;
  color: #1a1208;
  border-radius: 0 0 12px 12px;
  padding: 12px 10px 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  transform: rotate(-0.4deg);
  transition: transform 0.2s ease;
}
.slip:nth-child(even) { transform: rotate(0.5deg); }
.slip:nth-child(3n) { transform: rotate(-0.7deg); }
.slip:hover {
  transform: rotate(0) translateY(-3px);
  z-index: 2;
}
.slip--photo { padding-top: 4px; }
.slip-plate {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: -28px auto 6px;
  border: 3px solid #f3ead8;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}
.slip-seal {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 6px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0;
  box-shadow: 0 4px 8px rgba(216, 41, 48, 0.35);
}
.slip-body { text-align: center; }
.slip-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1px 5px 0;
  border-radius: 3px;
  margin-bottom: 4px;
}
.slip h3 {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}
.slip-am {
  margin-top: 2px;
  font-family: "Noto Sans Ethiopic", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #7a3a2a;
}
.slip-note {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 3px;
  font-size: 11px;
  color: #8a7360;
  line-height: 1.3;
}
.slip-act {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.price-coin {
  font-family: var(--display);
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.slip .add:not(.add-size),
.pass-ticket .add:not(.add-size) {
  width: 28px;
  height: 28px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  font-size: 16px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.slip .add:not(.add-size):hover,
.pass-ticket .add:not(.add-size):hover {
  background: #ffd84a;
}
.slip .add-size,
.pass-ticket .add-size {
  min-height: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(184, 134, 11, 0.5);
  color: #8a6a12;
  font-size: 11px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
}
.slip .add-size em,
.pass-ticket .add-size em {
  font-style: italic;
  color: #9a8874;
  margin-right: 4px;
}
.slip .add-size:hover,
.pass-ticket .add-size:hover {
  background: var(--gold);
  color: #1a1200;
  border-color: var(--gold);
}

.tablet {
  border-radius: 24px;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(245, 196, 0, 0.08);
  animation: rise 0.45s ease both;
}

.tablet-hero {
  background: #161310;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.tablet-hero--plain {
  min-height: 0;
  max-height: none;
}

.tablet-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 2px;
  position: relative;
  z-index: 3;
}
.tablet-brand {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.tablet-kicker {
  display: block;
  font-family: var(--caps);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.tablet-brand strong {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 22px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tablet-am {
  display: block;
  font-family: "Noto Sans Ethiopic", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.orb svg { width: 14px; height: 14px; }
.orb-price {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0;
  min-width: 34px;
  padding: 0 5px;
  width: auto;
}
.orb-cat {
  width: 36px;
  height: 36px;
  background: #2a241c;
  color: var(--gold);
  border: 1px solid rgba(245, 196, 0, 0.28);
  font-family: var(--caps);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
}
.orb-cat.is-on,
.orb-cat:hover {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}

.tablet-photo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  background: none;
  border: 0;
  cursor: pointer;
}
.tablet-photo img {
  width: min(96px, 32%);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 55%;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

.tablet-sheet {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: -14px;
  padding: 22px 16px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-content: start;
  background:
    radial-gradient(ellipse 46% 56px at 50% 0, transparent 68%, #f3ead8 69%);
  color: #2a2118;
}
.tablet-hero--plain .tablet-sheet {
  margin-top: 0;
  padding-top: 12px;
  background: #f3ead8;
  border-radius: 20px 20px 0 0;
}
.tablet-sheet::-webkit-scrollbar { width: 6px; }
.tablet-sheet::-webkit-scrollbar-thumb {
  background: rgba(42, 33, 24, 0.22);
  border-radius: 99px;
}

.sheet-col,
.board-list {
  min-width: 0;
  max-width: 100%;
}

.board-h {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0 3px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(42, 33, 24, 0.12);
}
.roman {
  font-family: var(--caps);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  min-width: 1.5em;
}
.board-h h3 {
  font-family: var(--caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a5a16;
}
.board-am {
  display: inline;
  font-family: "Noto Sans Ethiopic", sans-serif;
  color: #9a8874;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 6px;
}

.dish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 11px 0;
  border-bottom: 2px solid rgba(216, 41, 48, 0.12);
  text-align: left;
}
.dish-copy {
  min-width: 0;
  grid-column: 1;
}
.dish-act {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1;
}
.dish:hover {
  border-bottom-color: var(--red);
}
.dish-name {
  min-width: 0;
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  color: #140c08;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow: visible;
  white-space: normal;
}
.dish-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px 1px;
  background: var(--red);
  border: 0;
  border-radius: 3px;
  font-family: var(--display);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  vertical-align: 3px;
  line-height: 1;
}
.dish-lead { display: none; }
.dish-am {
  display: block;
  margin: 4px 0 0;
  font-family: "Noto Sans Ethiopic", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #7a3a2a;
  letter-spacing: 0;
  line-height: 1.3;
}
.dish-note {
  display: block;
  margin-top: 3px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  color: #8a7360;
  line-height: 1.35;
}
.dish .price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.dish .add:not(.add-size) {
  width: 28px;
  height: 28px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
  color: #1a1408;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
  display: grid;
  place-items: center;
}
.dish .add:not(.add-size):hover {
  background: #ffd84a;
  color: #1a1200;
}
.dish-sizes {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  padding-top: 0;
}
.dish .add-size {
  width: auto;
  min-height: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(184, 134, 11, 0.45);
  color: #8a6a12;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
}
.dish .add-size em {
  font-style: italic;
  font-weight: 500;
  color: #9a8874;
  margin-right: 4px;
}
.dish .add-size:hover {
  background: var(--gold);
  color: #1a1200;
  border-color: var(--gold);
}
.dish .add-size:hover em { color: #1a1200; }

.tablet-dash {
  background: #1a1612;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  padding: 12px 12px 0;
  min-height: 0;
}
.dash-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
}
.dash-copy {
  min-width: 0;
  overflow: auto;
}
.dash-copy::-webkit-scrollbar { width: 5px; }
.dash-copy::-webkit-scrollbar-thumb {
  background: rgba(245, 196, 0, 0.25);
  border-radius: 99px;
}
.dash-h {
  margin-bottom: 4px;
}
.dash-stars {
  display: block;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 8px;
  margin-bottom: 2px;
}
.dash-h h3 {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.dash-list .dish {
  border-bottom-color: rgba(216, 41, 48, 0.28);
  padding: 10px 0;
}
.dash-list .dish-name {
  color: #fff;
  font-size: 17px;
}
.dash-list .dish-am { color: var(--gold); }
.dash-list .dish-note { color: #b7afa3; }
.dash-list .dish .price { color: var(--gold); }
.dash-list .dish-tag {
  background: var(--gold);
  color: #1a1408;
}
.dash-list .dish .add:not(.add-size) {
  background: var(--gold);
  color: #1a1408;
}
.dash-list .dish .add-size {
  border-color: rgba(245, 196, 0, 0.4);
  color: var(--gold);
}
.dash-list .dish .add-size em { color: var(--muted); }

.dash-shots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-shot {
  position: relative;
  flex: 1 1 0;
  min-height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  border: 0;
  padding: 0;
}
.dash-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dash-shot:hover img { transform: scale(1.06); }
.dash-shot span {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px 3px;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-cta,
.dash-orbs,
.dash-foot { flex-shrink: 0; }

.dash-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 6px;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--gold);
  color: #1a1408;
  font-weight: 800;
  border: 0;
  width: 100%;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.dash-cta span {
  font-family: var(--caps);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.dash-cta em {
  font-style: normal;
  font-weight: 650;
  font-size: 11px;
  opacity: 0.72;
}
.dash-cta:hover { background: #ffd84a; }

.dash-orbs {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 0 2px 10px;
}

.dash-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0 -12px;
  padding: 8px 14px 10px;
  background: #f3ead8;
  color: #7a6a56;
  font-size: 11px;
  font-weight: 650;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #1a1200;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--pill);
}
.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-body h3 {
  font-size: 18px;
  font-weight: 750;
}
.card-body p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.price {
  font-family: var(--display);
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 0.03em;
}
.price small {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--muted);
}
.add {
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--pill);
  background: var(--red);
  color: #fff;
  font-weight: 750;
  font-size: 13px;
}
.add:hover { background: #ef3a40; }

/* ---- About / visit ---- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.about-copy h2 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  margin: 8px 0 16px;
}
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 48ch;
  margin-bottom: 14px;
}
.about-copy .hero-actions { margin-top: 8px; }

.about-board {
  background: #000;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 20px 12px;
  min-height: 220px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-board img.banner {
  width: 100%;
  height: auto;
}
.about-board .logo-orb {
  position: absolute;
  width: 120px;
  height: 120px;
}

.visit {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.info {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.info h3 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.info p, .info a, .info li {
  color: var(--text);
  font-size: 16px;
}
.info li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.info li:last-child { border-bottom: 0; }
.info li strong { color: var(--text); font-weight: 650; }
.info a:hover { color: var(--gold); }

/* ---- Footer ---- */

.site-footer {
  padding: 36px 0 48px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 16px; height: 16px; }

/* ---- Order section ---- */

.order-stage {
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(216, 41, 48, 0.18), transparent 60%),
    var(--ink);
}
.order-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.62);
  display: grid;
  justify-items: end;
  padding: 0;
}
.order-layer[hidden] {
  display: none !important;
}
.order-drawer {
  width: min(520px, 100%);
  height: 100%;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(216, 41, 48, 0.2), transparent 60%),
    #101010;
  border-left: 1px solid var(--line);
  overflow: auto;
  padding: 18px 18px 32px;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.4);
}
.order-drawer-h {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.order-drawer-h h2 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin-top: 4px;
}
body.order-open {
  overflow: hidden;
}
.order-desk {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.order-ticket {
  background: #f4efe6;
  color: #1a1208;
  border-radius: 22px;
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.order-ticket-h {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #c9b89a;
}
.order-ticket-h span {
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 22px;
}
.order-ticket-h strong {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.order-ticket-h em {
  margin-left: auto;
  color: #7a6e5c;
  font-style: normal;
  font-size: 13px;
}
#slip-items { flex: 1; }
.slip-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted #d7cbb4;
  font-family: var(--mono);
  font-size: 13px;
}
.qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qty button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #1a1208;
  color: #f4efe6;
  font-weight: 800;
}
.slip-empty {
  text-align: center;
  padding: 48px 10px;
  color: #7a6e5c;
  font-family: var(--mono);
  font-size: 14px;
}
.slip-empty a {
  color: #1a1208;
  font-weight: 700;
}
.slip-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  padding-top: 14px;
  margin-top: auto;
  font-family: var(--mono);
}
.order-pad {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.order-pad-lead {
  color: var(--muted);
  margin-bottom: 16px;
}
.order-who {
  color: var(--muted);
  font-size: 14px;
  margin: -6px 0 14px;
}
.order-who a,
.order-who .linkish {
  color: var(--gold);
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.fulfill-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fulfill-btn {
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--muted);
  border-radius: 12px;
  padding: 12px 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.fulfill-btn.is-on {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
}
#drop-fields { display: grid; gap: 8px; }
.pin-btn {
  border: 1px dashed var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.pin-note { font-size: 12.5px; margin: 0; color: var(--muted); }
.order-form {
  display: grid;
  gap: 8px;
}
.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--font);
  font-size: 16px;
}
.order-form textarea { min-height: 88px; resize: vertical; }
.order-form .btn { margin-top: 6px; width: 100%; }
.order-error {
  color: #ff8b8b;
  font-size: 13px;
  min-height: 1.2em;
  margin: 0;
}
.order-done {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.order-done span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.order-done strong {
  display: block;
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 6px 0 8px;
}
.order-done p {
  color: var(--muted);
  margin: 0;
}

.account-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  padding: 0 8px;
  white-space: nowrap;
}
.account-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.account-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.account-chip.is-on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.account-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.account-bar strong {
  display: block;
  font-size: 18px;
}
.account-bar .btn {
  min-height: 36px;
  padding: 0 12px;
  width: auto;
}
.account-history {
  display: grid;
  gap: 8px;
}
.account-slip {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font-size: 13px;
}
.account-slip strong {
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 22px;
}
.account-slip .status {
  margin-left: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.account-slip p {
  color: var(--muted);
  margin: 6px 0 0;
}
.slip-trail {
  font-size: 11px;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .order-desk { grid-template-columns: 1fr; }
  .order-drawer { width: 100%; }
}

/* ---- Fabs ---- */

.fabs {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 45;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.fab-cart { background: var(--red); color: #fff; position: relative; }
.fab svg { width: 24px; height: 24px; }

/* ---- Order bar (phones) ----
   .fabs is display:none under 720px, so the slip would otherwise be a
   scroll back to the header. This rides the bottom instead. */

.order-bar { display: none; }

.order-bar-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  font: inherit;
  text-align: left;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
}

.order-bar-n { font-size: 13px; opacity: 0.85; }

.order-bar-go {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.order-bar-total {
  font-family: var(--mono, ui-monospace, monospace);
  font-weight: 750;
  font-size: 15px;
}

@media (max-width: 720px) {
  .order-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 46;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
  }
  /* display:block above outranks the [hidden] attribute, so say it again */
  .order-bar[hidden] { display: none; }
  /* the slip covers the screen; the bar under it would only be noise */
  body.order-open .order-bar { display: none; }
  body.has-order-bar .menu-stage { padding-bottom: 84px; }
  body.has-order-bar.has-consent-bar .order-bar { bottom: 96px; }
}

/* ---- Toast ---- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  background: var(--gold);
  color: #1a1200;
  font-weight: 750;
  padding: 10px 16px;
  border-radius: var(--pill);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: 0.2s ease;
}
.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.notice-layer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 20px;
}
.notice-layer[hidden] {
  display: none !important;
}
.notice-card {
  width: min(420px, 100%);
  background: #161310;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.notice-kicker {
  font-family: var(--caps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.notice-card.is-challenge .notice-kicker { color: #ff8b8b; }
.notice-card.is-offer .notice-kicker { color: var(--gold); }
.notice-title {
  font-family: var(--display);
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 10px;
}
.notice-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.notice-step {
  margin-top: 12px;
  font-size: 12px;
  color: #7a7268;
}
.notice-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

@media (min-width: 981px) {
  .tablet-hero,
  .tablet-dash {
    height: min(640px, calc(100vh - 140px));
    max-height: min(640px, calc(100vh - 140px));
  }
  .tablet-dash {
    position: sticky;
    top: 124px;
    align-self: start;
  }
}

@media (max-width: 860px) {
  .pass-plate {
    grid-template-columns: 108px 1fr;
    margin-bottom: 8px;
  }
  .pass-ring {
    width: 108px;
    margin-right: -16px;
    border-width: 4px;
  }
  .pass-waiter {
    left: -4px;
    top: 0;
    width: 32px;
    height: 32px;
  }
  .pass-ticket {
    padding: 12px 12px 10px 22px;
  }
  .pass-rack {
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    padding-top: 22px;
  }
}

@media (max-width: 980px) {
  .menu-board { grid-template-columns: 1fr; gap: 16px; }
  .tablet-hero,
  .tablet-dash { min-height: 0; max-height: none; height: auto; }
  .split, .info-grid { grid-template-columns: 1fr; }
  .shot-a { height: 200px; }
  .shot-b { height: 180px; }
  .shot-c { height: 150px; }
}

@media (max-width: 720px) {
  :root { --header: 64px; }
  .sign { display: none; }
  .header-tools {
    width: min(1120px, calc(100% - 20px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--red);
    border-radius: var(--pill);
    padding: 8px 10px 8px 8px;
  }
  .brand-m {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--display);
    letter-spacing: 0.12em;
    font-size: 22px;
  }
  .brand-m .logo-orb {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }
  .header-tools-right { display: flex; gap: 6px; align-items: center; }
  .install-chip { display: inline-flex; }
  .profile-lanes { grid-template-columns: 1fr 1fr; }
  .profile-btn-m {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
  }
  .profile-btn-m .profile-mark-label { display: none; }
  .burger { display: flex; background: transparent; border: 0; }
  .icon-btn { background: rgba(0,0,0,0.18); border-color: transparent; color: #fff; }
  .menu-stage .wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .courses { top: 68px; }
  .fabs { display: none; }
  .menu-board { grid-template-columns: minmax(0, 1fr); }
  .pass-plate {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .pass-ring {
    justify-self: center;
    margin-right: 0;
    width: 120px;
  }
  .pass-ticket {
    padding: 12px 12px 10px;
    margin-top: -18px;
    width: 100%;
    text-align: center;
  }
  .pass-ticket .slip-act { justify-content: center; }
  .pass-stamp { left: 10px; right: auto; }
  .pass-cat { padding-right: 0; }
  .pass-rack { grid-template-columns: 1fr 1fr; gap: 22px 8px; padding-top: 18px; }
  #menu .filter img { width: 40px; height: 40px; }
  #menu .filters { justify-content: flex-start; flex-wrap: nowrap; }
  .tablet { border-radius: 22px; width: 100%; }
  .tablet-sheet {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow-y: visible;
    max-height: none;
    padding-inline: 14px;
  }
  .tablet-photo { padding-inline: 16px; }
  .tablet-photo img { width: min(88px, 38%); }
  .dash-body { grid-template-columns: minmax(0, 1fr); }
  .dash-shots { flex-direction: row; }
  .dash-shot { min-height: 78px; max-height: none; }
  .dish-name { font-size: 20px; }
  .dish-am { font-size: 13px; }
  .dish .price { font-size: 20px; }
  .dish .add:not(.add-size) { width: 30px; height: 30px; }
  .folio { padding: 28px 16px 24px; }
  .hero-stage { min-height: 260px; }
  .shot-a { width: 70%; height: 180px; }
  .shot-b { width: 55%; height: 150px; }
  .shot-c { display: none; }
  .hero-stats { gap: 14px; }
  .hero-stats div strong { font-size: 20px; }
  .site-footer { padding-bottom: 140px; }
  .badge-float { display: none; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
  }
  #menu .filters {
    justify-content: flex-start;
  }
  .filter { flex-shrink: 0; }
}

/* ---- Motion: red + gold ---- */

.logo-orb {
  animation: orbPulse 3.2s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(245, 196, 0, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(216, 41, 48, 0.4), 0 0 0 10px rgba(245, 196, 0, 0.12); }
}

.pill {
  position: relative;
  overflow: hidden;
}
.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(245, 196, 0, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

.hero::before {
  animation: glow 5s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}

.hero h1 {
  animation: titleIn 0.8s ease both;
}
@keyframes titleIn {
  from { opacity: 0; transform: translateY(18px); letter-spacing: 0.12em; }
  to { opacity: 1; transform: none; letter-spacing: 0.02em; }
}

.folio {
  overflow: hidden;
}
.folio::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.08), rgba(216, 41, 48, 0.1), transparent);
  animation: sweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%, 20% { transform: translateX(0); }
  80%, 100% { transform: translateX(420%); }
}

.board-section {
  animation: rise 0.35s ease both;
}
@keyframes rise {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- Chicken server ---- */

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  position: relative;
}
.hero-stage::before,
.brand-stage .server::before {
  content: "";
  position: absolute;
  width: min(440px, 92%);
  height: min(440px, 92%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%,
    rgba(245, 196, 0, 0.3),
    rgba(216, 41, 48, 0.16) 46%,
    transparent 72%);
  pointer-events: none;
}
.brand-stage .server::before {
  inset: auto;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(360px, 110%);
  height: min(360px, 110%);
}
.server {
  position: relative;
  width: min(280px, 100%);
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  isolation: isolate;
}
.server::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 16%;
  bottom: 4%;
  height: 34px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), transparent 72%);
  z-index: 0;
  pointer-events: none;
  animation: shadowPulse 4s ease-in-out infinite;
}
.server-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 20px 26px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 22px rgba(245, 196, 0, 0.1));
  transform-origin: 50% 92%;
  -webkit-mask-image: radial-gradient(ellipse 68% 72% at 50% 54%, #000 54%, transparent 76%);
  mask-image: radial-gradient(ellipse 68% 72% at 50% 54%, #000 54%, transparent 76%);
}
.server.is-serving .server-mascot { animation: hop 0.7s ease; }
.server-mini img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 38% 32%, #ef4548, var(--red-deep));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
.server-shadow { fill: #000; opacity: 0.32; animation: shadowPulse 2.2s ease-in-out infinite; }
.torso { transform-origin: 132px 242px; animation: breath 2.4s ease-in-out infinite; }
.head, .cap { transform-origin: 132px 170px; animation: nod 3.6s ease-in-out infinite; }
.wing-l { transform-origin: 90px 220px; animation: flap 2s ease-in-out infinite; }
.arm-tray { transform-origin: 180px 220px; animation: trayBob 2.6s ease-in-out infinite; }
.cloche { transform-origin: 228px 196px; animation: lid 4.2s ease-in-out infinite; }
.steam { animation: steam 2.4s ease-in-out infinite; }
.eyes { transform-origin: 132px 118px; animation: blink 5.2s infinite; }
.legs { transform-origin: 132px 302px; animation: shift 2.2s ease-in-out infinite; }
.comb { transform-origin: 132px 80px; animation: combWiggle 2.8s ease-in-out infinite; }

@keyframes breath {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.03); }
}
@keyframes nod {
  0%, 70%, 100% { transform: rotate(0); }
  80% { transform: rotate(-6deg); }
  90% { transform: rotate(4deg); }
}
@keyframes flap {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-18deg); }
}
@keyframes trayBob {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}
@keyframes lid {
  0%, 55%, 100% { transform: translateY(0) rotate(0); }
  62% { transform: translateY(-18px) rotate(-12deg); }
  70% { transform: translateY(-8px) rotate(-4deg); }
}
@keyframes steam {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-10px); }
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
}
@keyframes shift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.32; }
  50% { transform: scaleX(0.86); opacity: 0.2; }
}
@keyframes combWiggle {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-8deg); }
}

.server.is-serving .arm-tray { animation: trayServe 0.7s ease; }
.server.is-serving .torso,
.server.is-serving .head,
.server.is-serving .cap { animation: hop 0.7s ease; }
@keyframes trayServe {
  0% { transform: rotate(6deg) translateY(0); }
  40% { transform: rotate(-8deg) translateY(-28px); }
  100% { transform: rotate(6deg) translateY(0); }
}
@keyframes hop {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-16px); }
}
@keyframes idleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.server-bubble {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translate(-50%, -10px);
  background: var(--gold);
  color: #1a1200;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 16px 16px 16px 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.server-bubble.is-on {
  animation: bubbleIn 0.35s ease both, bubbleHold 5.2s ease 0.35s both;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translate(-50%, 6px) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -10px) scale(1); }
}
@keyframes bubbleHold {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; }
}

.server-mini {
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 45;
  width: 76px;
  display: grid;
  justify-items: center;
  gap: 2px;
  background: none;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  animation: miniBob 2.4s ease-in-out infinite;
}
.server-mini svg { width: 72px; height: 72px; }
.server-mini.is-serving { animation: hop 0.7s ease; }
@keyframes miniBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.spark {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 85;
  animation: spark 0.6s ease-out forwards;
}
.spark-red { background: var(--red); }
@keyframes spark {
  to {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.2);
  }
}

.btn-gold, .btn-red {
  position: relative;
  overflow: hidden;
}
.btn-gold:hover, .btn-red:hover {
  animation: btnPop 0.35s ease;
}
@keyframes btnPop {
  50% { transform: scale(1.04); }
}

@media (max-width: 720px) {
  .hero-stage { min-height: 300px; }
  .server { width: min(240px, 78%); }
  .server-bubble { font-size: 13px; white-space: normal; max-width: 200px; text-align: center; }
  .server-mini { display: none; }
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .brand-logo { width: min(168px, 46vw); border-width: 6px; }
  .brand-word { height: 36px; }
  .brand-stage { padding: 4px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .card-img img, .btn, .toast,
  .logo-orb, .brand-logo, .pill::after, .hero::before, .hero h1, .folio::after, .brand-stage::before,
  .dish, .board-section, .server-shadow, .torso, .head, .cap, .wing-l,
  .arm-tray, .cloche, .steam, .eyes, .legs, .comb, .server-bubble,
  .server-mini, .server-mascot, .server::after, .hero-stage::before, .spark {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Mobile — light board.
   A phone is held one-handed at a table: white ground, one dish
   per row, thumb-sized targets. Desktop keeps the paper-slip look.
   ============================================================ */
@media (max-width: 720px) {
  body { background: #fff; }

  .menu-stage {
    background: #fff;
    padding-bottom: 40px;
  }
  /* the ticker is decoration that costs a whole row on a phone */
  .menu-stage .marquee { display: none; }

  .menu-stage .wrap {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  /* ---- course strip ---- */
  .courses {
    top: 60px;
    background: #fff;
    border-bottom: 1px solid #efece6;
    padding: 6px 0 8px;
  }
  /* the band on a phone: white card, red number, full-width tap target */
  .call-band {
    gap: 12px;
    margin: 12px 0 6px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #ebe6dd;
    border-radius: 18px;
    box-shadow: 0 14px 32px -22px rgba(20, 16, 10, 0.55);
  }
  .call-band-orb { width: 38px; height: 38px; }
  .call-band-kicker { color: #8b8378; }
  .call-band-num { color: var(--red); font-size: 21px; }
  .call-band-go {
    padding: 7px 12px;
    border-color: #ebe6dd;
    color: #8b8378;
    font-size: 10px;
  }

  #menu .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 4px;
    -webkit-overflow-scrolling: touch;
  }
  #menu .filter { color: #9a938a; font-size: 9.5px; gap: 5px; }
  #menu .filter img {
    width: 46px; height: 46px;
    border: 2px solid #efece6;
    box-shadow: none;
  }
  #menu .filter.is-on { color: var(--red); }
  #menu .filter.is-on img {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(216,41,48,.12);
  }

  /* ---- hero dish: a clean feature row, not a badge ---- */
  .pass-plate {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    justify-items: stretch;
    margin: 14px 0 2px;
  }
  .pass-waiter, .pass-stamp { display: none; }
  .pass-ring {
    width: 92px; margin: 0;
    justify-self: start;
    border: 0; border-radius: 20px;
    box-shadow: none; animation: none;
  }
  .pass-ticket {
    background: transparent;
    box-shadow: none;
    padding: 0; margin: 0;
    width: auto;
    text-align: left;
    color: #14100a;
  }
  .pass-cat { color: var(--red); padding-right: 0; margin-bottom: 2px; }
  .pass-ticket h2 { font-size: 21px; color: #14100a; }
  .pass-ticket .slip-act { justify-content: flex-start; margin-top: 8px; }

  /* ---- one dish per row ---- */
  .pass-rack {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
  }
  .slip {
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid #f1eee9;
    box-shadow: none;
    transform: none !important;
    padding: 11px 2px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 13px;
    text-align: left;
  }
  .slip:last-child { border-bottom: 0; }
  .slip--photo { padding-top: 11px; }

  .slip-plate, .slip-seal {
    width: 58px; height: 58px;
    margin: 0;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
  }
  .slip-seal { font-size: 22px; }

  /* name block left, price + add pinned right */
  .slip-body {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    align-items: center;
    text-align: left;
  }
  .slip-body > * { grid-column: 1; }
  .slip-body > .slip-act {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    justify-content: flex-end;
    margin-top: 0;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .slip h3 { font-size: 14.5px; line-height: 1.05; }
  .slip-am { font-size: 11px; margin-top: 3px; }
  .slip-note { font-size: 11px; margin-top: 2px; }
  /* inline-block still stretches as a grid item — pin it to the left */
  .slip-tag { margin-bottom: 3px; justify-self: start; }

  /* letter tiles: a quiet placeholder, not nine red blocks down the page */
  .slip-seal {
    background: #fbf1ef;
    color: var(--red);
    box-shadow: none;
    font-size: 20px;
  }
  .price-coin { font-size: 17px; white-space: nowrap; }

  /* thumb-sized targets */
  .slip .add:not(.add-size) { width: 38px; height: 38px; font-size: 19px; }
  .slip .add-size { min-height: 34px; height: 34px; padding: 0 12px; font-size: 12px; }
  .slip-body > .slip-act { row-gap: 6px; }

  .pass-cta {
    width: 100%;
    min-height: 50px;
    margin: 22px auto 0;
    font-size: 15px;
  }
  .course-empty { color: #9a938a; }
}

/* Mobile — the order sheet follows the board into the light.
   White on white left every part of the sheet weighing the same, so
   colour does the sorting instead: warm paper behind two white cards,
   red on anything that acts (the plus, the choice, the send), gold on
   the money, green on the ticket that came back. */
@media (max-width: 720px) {
  .order-layer { background: rgba(20, 16, 10, 0.45); }
  .order-drawer {
    background: #f7f3ec;
    border-left: 0;
    color: #14100a;
    padding: 16px 16px 28px;
  }
  .order-drawer-h h2 { color: #14100a; font-size: 30px; }
  .order-drawer .kicker { color: var(--red); }
  .order-drawer .icon-btn {
    background: #fff;
    border-color: #e7e0d4;
    color: #6b6259;
  }

  /* card 1 — what you are buying, printed like a receipt */
  .order-ticket {
    background: #fff;
    border: 1px solid #ebe6dd;
    border-top: 3px solid var(--red);
    border-radius: 18px;
    padding: 18px;
    min-height: 0;
    box-shadow: 0 14px 30px -24px rgba(20, 16, 10, 0.6);
  }
  .order-ticket-h { border-bottom-color: #e2dccf; }
  .order-ticket-h span { color: var(--red); }
  .order-ticket-h strong { color: #6b6259; }
  .order-ticket-h em { color: #8a8076; }
  /* fixed price column so the steppers line up down the slip */
  .slip-row {
    border-bottom-color: #eee8dc;
    grid-template-columns: 1fr auto 82px;
  }
  .slip-row > div:last-child { text-align: right; }

  /* − steps back quietly, + is the one hand reaches for */
  .qty button {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 16px;
    line-height: 1;
  }
  .qty button[data-d="-1"] {
    background: #f3efe8;
    border: 1px solid #e4ded3;
    color: #6b6259;
  }
  .qty button[data-d="1"] {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 10px -4px rgba(216, 41, 48, 0.8);
  }

  .slip-empty { color: #8a8076; }
  .slip-empty a { color: var(--red); }

  /* the money is the anchor of the card */
  .slip-total {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fdf6e3;
    border: 1px solid #f0e2b6;
    color: #14100a;
    font-size: 17px;
  }
  .slip-total span:last-child { color: #9a6b00; }

  /* card 2 — what you do next */
  .order-pad {
    background: #fff;
    border: 1px solid #ebe6dd;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 14px 30px -24px rgba(20, 16, 10, 0.6);
  }
  .order-pad-lead, .order-who { color: #6b6259; }
  .order-who a, .order-who .linkish { color: var(--red); }

  .order-form textarea,
  .order-form input,
  .fulfill-btn {
    background: #faf8f4;
    border-color: #e4ded3;
    color: #14100a;
  }
  .order-form textarea::placeholder,
  .order-form input::placeholder { color: #a29a90; }
  /* the field you are in says so */
  .order-form input:focus,
  .order-form textarea:focus,
  .promo-row input:focus {
    outline: none;
    background: #fff;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(216, 41, 48, 0.12);
  }

  /* delivery or pickup: the chosen one is filled, in ink rather than
     red — red is kept for the one button that sends the order */
  .fulfill-btn { color: #6b6259; }
  .fulfill-btn.is-on {
    border-color: #1f1710;
    background: #1f1710;
    color: #fff;
    box-shadow: 0 6px 14px -9px rgba(20, 16, 10, 0.9);
  }

  /* a helper, not a warning: red ink on white so the pink band below
     stays the one thing that means something went wrong */
  .pin-btn {
    border-color: rgba(216, 41, 48, 0.45);
    background: #fff;
    color: var(--red);
    font-weight: 650;
  }
  .pin-note { color: #6b6259; }

  /* the one button that sends the order carries the brand red */
  .order-form #send-kitchen {
    background: var(--red);
    color: #fff;
    min-height: 52px;
    font-size: 16px;
    box-shadow: 0 12px 24px -12px rgba(216, 41, 48, 0.9);
  }
  .order-form .btn { min-height: 50px; }

  .order-error:not([hidden]) {
    background: #fdf0ee;
    border: 1px solid #f3ccc7;
    border-radius: 10px;
    padding: 9px 12px;
    color: #c0271f;
    font-weight: 600;
    min-height: 0;
  }

  /* it worked — the only green on the sheet */
  .order-done {
    margin-top: 16px;
    padding: 14px;
    border-top: 0;
    border: 1px solid #cfe8d8;
    border-radius: 14px;
    background: #f2faf5;
  }
  .order-done span { color: #1c7a45; }
  .order-done strong { color: #14100a; font-size: 40px; }
  .order-done p { color: #4f6b5a; }
}

/* ============================================================
   Mobile — navigation bar.
   The red pill was a saturated slab against the white board and
   it drowned its own icons. Flat white, hairline rule, thin
   glyphs; the brand reads through the mark, not a block of red.
   ============================================================ */
@media (max-width: 720px) {
  :root { --header: 56px; }

  .site-header {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(1.6) blur(14px);
    backdrop-filter: saturate(1.6) blur(14px);
    border-bottom: 1px solid #efece6;
    padding: 0;
  }

  .header-tools {
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent;
    border-radius: 0;
    padding: 7px 14px;
    min-height: 56px;
  }

  /* brand: small mark, quiet wordmark */
  .brand-m {
    color: #14100a;
    font-size: 18px;
    letter-spacing: 0.18em;
    gap: 10px;
  }
  .brand-m .logo-orb {
    width: 36px;
    height: 36px;
    border: 2px solid var(--red);
    box-shadow: none;
    /* orbPulse keyframes repaint a gold ring over any box-shadow we set */
    animation: none;
  }

  /* icons: glyph only, no discs, generous tap area */
  .header-tools-right { gap: 0; }
  .icon-btn {
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: 0 !important;
    color: #2b241d;
  }
  .icon-btn svg { width: 21px; height: 21px; stroke-width: 1.7; }
  .profile-btn-m { width: 44px; height: 44px; }
  .profile-btn-m .profile-mark {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    color: #2b241d;
  }
  .profile-btn-m .profile-mark-icon { width: 21px; height: 21px; }

  /* counts become small ringed dots so they read on white */
  .notice-count,
  .cart-count {
    top: 3px;
    right: 3px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: none;
  }
  .cart-count { background: var(--red); color: #fff; }

  .burger { width: 44px; height: 44px; gap: 4.5px; }
  .burger span {
    width: 19px;
    height: 1.8px;
    background: #2b241d;
  }

  /* the course strip sits directly under the new bar */
  .courses { top: 56px; }

  /* drop-down sheet follows the light treatment */
  .mobile-nav { background: rgba(20, 16, 10, 0.38); padding-top: 74px; }
  .mobile-nav nav {
    background: #fff;
    border: 1px solid #ebe6dd;
    border-radius: 20px;
    box-shadow: 0 24px 60px -24px rgba(20, 16, 10, 0.4);
    padding: 10px;
  }
  .mobile-nav a,
  .mobile-nav button {
    color: #14100a;
    font-size: 15px;
    padding: 15px 16px;
  }
  .mobile-nav a:hover,
  .mobile-nav button:hover,
  .mobile-nav a:active,
  .mobile-nav button:active {
    background: #faf7f2;
    color: var(--red);
  }
}

/* ============================================================
   What's new — menu updates, on the page instead of in the way.
   ============================================================ */
.updates {
  background: var(--ink);
  padding: 8px 0 64px;
}
.updates-head { margin-bottom: 18px; }
.updates-head h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-top: 4px;
}
.updates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.update-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  padding: 16px 18px;
}
.update-card.is-challenge { border-left-color: var(--red); }
.update-card.is-offer { border-left-color: #4bbf7a; }
.update-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.update-kind {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.update-card.is-challenge .update-kind { color: var(--red); }
.update-card.is-offer .update-kind { color: #4bbf7a; }
.update-new {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border-radius: 99px;
  padding: 2px 7px;
}
.update-when {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--mono);
}
.update-card h3 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.update-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}
.updates-empty { color: var(--muted); }

/* mobile: light, one per row, same hairline rhythm as the board */
@media (max-width: 720px) {
  .updates {
    background: #fff;
    padding: 4px 0 48px;
    border-top: 1px solid #efece6;
    margin-top: 22px;
  }
  .updates .wrap {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .updates-head { margin: 18px 0 12px; }
  .updates-head h2 { color: #14100a; font-size: 24px; }
  .updates-head .kicker { color: var(--red); }
  .updates-list { grid-template-columns: 1fr; gap: 10px; }
  .update-card {
    background: #fdfbf8;
    border: 1px solid #efe9e0;
    border-left: 3px solid var(--gold);
    border-radius: 14px;
    padding: 14px 15px;
  }
  .update-card h3 { color: #14100a; font-size: 16px; }
  .update-card p { color: #6b6259; font-size: 13px; }
  .update-when { color: #9a938a; }
  .updates-empty { color: #9a938a; }
}

/* Mobile masthead — NUU, hairline, Menu */
@media (max-width: 720px) {
  .brand-m { gap: 9px; align-items: center; }
  .brand-word {
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 0.18em;
    line-height: 1;
    color: #14100a;
  }
  .brand-rule {
    width: 1px;
    height: 17px;
    background: #ded7cc;
    display: block;
    margin: 0 1px;
  }
  .brand-sub {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8d857b;
    line-height: 1;
    padding-top: 1px;
  }
}

/* Masthead alignment: the brand words must not wrap — a second, empty
   line box was doubling their height and pinning the glyphs to the top. */
@media (max-width: 720px) {
  .brand-m { align-items: center; }
  .brand-word,
  .brand-sub {
    white-space: nowrap;
    flex: 0 0 auto;
    /* centre each word inside a box the same height as the logo, so the
       glyphs sit on the orb's centre line instead of the inherited line box */
    display: flex;
    align-items: center;
    height: 36px;
    line-height: 1;
  }
}

/* ============================================================
   Board tabs — Menu | What's new
   ============================================================ */
.board-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 104px;
  z-index: 26;
  background: var(--ink);
  margin-top: 16px;
}
.board-tab {
  position: relative;
  background: none;
  border: 0;
  padding: 14px 0 12px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.board-tab:hover { color: var(--text); }
.board-tab.is-on { color: var(--text); }
.board-tab.is-on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
/* the count is absolutely positioned in the header — sit it inline here */
.board-tab .notice-count {
  position: static;
  display: inline-grid;
  margin-left: 8px;
  min-width: 16px;
  height: 16px;
  font-size: 10px;
  border: 0;
}
.board-tab[aria-selected="false"] .notice-count { background: var(--muted); color: #14100a; }

/* the news panel is inside the board now, not its own page section */
#panel-news.updates {
  background: transparent;
  border-top: 0;
  margin-top: 0;
  padding: 22px 0 56px;
}
#panel-news .updates-list { padding-top: 0; }

/* course strip clears the tab bar */
.courses { top: 152px; }

@media (max-width: 720px) {
  .board-tabs {
    top: 56px;
    background: #fff;
    border-bottom: 1px solid #efece6;
    gap: 24px;
    margin-top: 0;
  }
  .board-tab { color: #9a938a; font-size: 12px; padding: 13px 0 11px; }
  .board-tab.is-on { color: #14100a; }
  .board-tab.is-on::after { background: var(--red); }
  .board-tab[aria-selected="false"] .notice-count { background: #ded7cc; color: #6b6259; }

  .courses { top: 100px; }

  #panel-news.updates { padding: 16px 0 44px; }
}

/* the page ground itself, not just <body> — html was still painting --ink */
@media (max-width: 720px) {
  html, body { background: #fff; }
  .site-footer { background: #fff; border-top: 1px solid #efece6; padding: 24px 0 34px; }
  .foot { color: #8d857b; font-size: 12.5px; }
  .socials a { color: #8d857b; }
}

/* ============================================================
   Order sign-in popup — phone, code, password.
   ============================================================ */
.signin-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 8, 6, 0.62);
  display: grid;
  place-items: center;
  padding: 20px;
}
.signin-layer[hidden] { display: none !important; }
.signin-card {
  position: relative;
  width: min(380px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.9);
}
.signin-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
}
.signin-x svg { width: 18px; height: 18px; }
.signin-card h2 {
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 4px 0 8px;
}
.signin-lead {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.signin-step { display: grid; gap: 10px; }
.signin-step[hidden] { display: none !important; }
.signin-step input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
  border-radius: 14px;
  padding: 14px;
  font-family: var(--font);
  font-size: 16px;               /* 16px stops iOS zooming the page */
}
.signin-step input:focus {
  outline: 2px solid rgba(245, 196, 0, 0.28);
  border-color: var(--gold);
}
#si-code {
  font-family: var(--mono);
  letter-spacing: 0.5em;
  text-align: center;
  font-size: 22px;
}
.signin-link {
  justify-self: center;
  background: none;
  border: 0;
  color: var(--gold);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px;
}
.signin-link:disabled { color: var(--muted); cursor: default; }
/* the way out of the current step — sign in by password instead of a
   code, or skip picking one. Quieter than the button above it. */
.signin-alt {
  margin-top: 2px;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.signin-alt:hover { opacity: 1; }
.signin-error {
  color: #ff8b8b;
  font-size: 13px;
  margin: 12px 0 0;
  line-height: 1.45;
}
.signin-card .btn { width: 100%; margin-top: 16px; min-height: 50px; }

@media (max-width: 720px) {
  .signin-card {
    background: #fff;
    border-color: #ebe6dd;
    color: #14100a;
    border-radius: 22px;
  }
  .signin-card h2 { color: #14100a; }
  .signin-card .kicker { color: var(--red); }
  .signin-lead { color: #6b6259; }
  .signin-x { color: #9a938a; }
  .signin-step input {
    background: #faf8f4;
    border-color: #e4ded3;
    color: #14100a;
  }
  .signin-step input::placeholder { color: #a29a90; }
  .signin-link { color: var(--red); }
  .signin-link:disabled { color: #a29a90; }
  .signin-error { color: #c0271f; }
}

/* ============================================================
   Customer relationship board — offers, card, usual, rating
   ============================================================ */
#crm-board { display: grid; gap: 14px; margin-bottom: 14px; }
.crm-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}
.crm-kind {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.crm-card h3 {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 8px;
}
.crm-body { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0 0 10px; }
.crm-code {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(245, 196, 0, 0.1);
  border: 1px dashed rgba(245, 196, 0, 0.45);
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 13px;
}
.crm-btn {
  background: var(--gold);
  color: #1a1408;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  min-height: 40px;
}
.crm-btn:disabled { opacity: 0.55; cursor: default; }

.stamps { display: flex; gap: 7px; margin-bottom: 10px; flex-wrap: wrap; }
.stamp {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px dashed rgba(245, 196, 0, 0.5);
}
.stamp.is-on {
  background: var(--gold);
  border-style: solid;
  border-color: var(--gold);
}
.crm-loyalty.is-ready { border-color: rgba(245, 196, 0, 0.6); }

.usual-row { display: flex; align-items: center; gap: 12px; }
.usual-row img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; }
.usual-row h3 { margin: 0; }
.usual-am { font-family: "Noto Sans Ethiopic", sans-serif; font-size: 11.5px; color: var(--muted); margin: 3px 0 0; }
.usual-row .crm-btn { margin-left: auto; white-space: nowrap; }

.stars { display: flex; gap: 4px; margin-bottom: 10px; }
.stars button {
  background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; padding: 0 2px;
  color: rgba(245, 196, 0, 0.28);
}
.stars button.is-on { color: var(--gold); }
.crm-note {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 10px;
  font-family: var(--font);
  font-size: 14px;
  margin-bottom: 10px;
  resize: vertical;
}
.offer-foot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.offer-foot .crm-btn { margin-left: auto; }

/* promo field in the slip */
.promo-row { display: flex; gap: 8px; }
.promo-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-apply {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 12px;
  padding: 0 16px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.promo-note { font-size: 12.5px; margin: 8px 0 0; line-height: 1.45; }
.promo-note.is-ok { color: #7fd6a0; }
.promo-note.is-bad { color: #ff8b8b; }

@media (max-width: 720px) {
  .crm-card { background: #fdfbf8; border-color: #efe9e0; border-radius: 14px; }
  .crm-card h3 { color: #14100a; }
  .crm-body { color: #6b6259; }
  .crm-kind { color: var(--red); }
  .crm-code { color: #9a6b00; background: #fff8e3; border-color: #e8cf8a; }
  .stamp { border-color: #e0d6c2; }
  .stamp.is-on { background: var(--gold); border-color: var(--gold); }
  .stars button { color: #e3dcd0; }
  .stars button.is-on { color: #f0ad00; }
  .crm-note { background: #fff; border-color: #e4ded3; color: #14100a; }
  .promo-row input { background: #faf8f4; border-color: #e4ded3; color: #14100a; }
  .promo-apply { border-color: var(--red); color: var(--red); }
  .promo-note.is-ok { color: #1c7a45; }
  .promo-note.is-bad { color: #c0271f; }
}

.auth-lead { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }

/* ============================================================
   Mobile — the profile page follows the board into the light.
   Its headings are near-white by default and vanished on the
   new white ground.
   ============================================================ */
@media (max-width: 720px) {
  .profile-page .site-header { background: #fff; }
  .profile-main { padding-top: 18px; }

  .profile-head h1,
  .profile-orders-h,
  #account-hello { color: #14100a; }
  .profile-head .kicker { color: var(--red); }
  .hero-lead { color: #6b6259; }

  .profile-auth-card {
    background: #fdfbf8;
    border: 1px solid #efe9e0;
    border-radius: 18px;
    padding: 18px;
  }
  .auth-lead { color: #6b6259; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
  .profile-auth-card .btn { width: 100%; min-height: 50px; }

  .btn-ghost { border-color: #ded7cc; color: #14100a; }

  .orders-table-wrap { overflow-x: auto; }
  .orders-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .orders-table th {
    color: #8d857b;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    padding: 8px 10px 8px 0;
    border-bottom: 1px solid #efece6;
    white-space: nowrap;
  }
  .orders-table td {
    color: #14100a;
    padding: 12px 10px 12px 0;
    border-bottom: 1px solid #f4f1ec;
    vertical-align: top;
  }
  .table-note { color: #6b6259; font-size: 12px; margin-top: 3px; }
  .table-history { color: #8d857b; font-size: 11.5px; }
  .lane-empty { color: #8d857b; }
}
/* Mobile — order history table on the light ground */
@media (max-width: 720px) {
  .orders-table-wrap {
    background: #fff;
    border: 1px solid #efe9e0;
    border-radius: 14px;
    padding: 0 12px;
  }
  .orders-table th,
  .orders-table td { padding: 11px 8px; }
  .orders-table tr:last-child td { border-bottom: 0; }

  .table-status { background: #f4f1ec; }
  .table-status.is-request   { color: #8a6d00; }
  .table-status.is-accepted  { color: #0369a1; }
  .table-status.is-pending   { color: #92400e; }
  .table-status.is-ready     { color: #15803d; }
  .table-status.is-delivered { color: #1d4ed8; }
  .table-status.is-payout    { color: #6d28d9; }
  .table-status.is-done      { color: #6b6259; }
  .table-status.is-cancelled { color: #b91c1c; }
}

/* ============================================================
   Order tracker — what the customer watches after they send a slip.
   ============================================================ */
.track-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.track-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.track-h strong { font-family: var(--display); font-size: 19px; letter-spacing: .04em; }
.track-total { font-family: var(--mono); font-size: 14px; color: var(--muted); }
.track-lead { margin: 6px 0 14px; color: var(--text); font-size: 14px; }

.track-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.track-steps li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13.5px;
}
/* the line joining the dots */
.track-steps li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: -7px;
  width: 2px;
  background: var(--line);
}
.track-steps li:last-child::before { display: none; }
.track-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: transparent;
  justify-self: center;
  z-index: 1;
}
.track-steps li.is-done { color: var(--text); }
.track-steps li.is-done .track-dot { background: var(--gold); border-color: var(--gold); }
.track-steps li.is-now { color: var(--gold); font-weight: 700; }
.track-steps li.is-now .track-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,196,0,.18);
}
.track-steps li.is-dead { opacity: .45; }
.track-at { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.track-items { margin: 12px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.track-card.is-cancelled { border-color: rgba(216,41,48,.5); }

@media (max-width: 720px) {
  .track-card { background: #fdfbf8; border-color: #efe9e0; border-radius: 14px; }
  .track-h strong { color: #14100a; }
  .track-total { color: #6b6259; }
  .track-lead { color: #14100a; }
  .track-steps li { color: #9a938a; }
  .track-steps li::before { background: #e6e0d6; }
  .track-dot { border-color: #ded7cc; }
  .track-steps li.is-done { color: #14100a; }
  .track-steps li.is-now { color: #9a6b00; }
  .track-at { color: #a29a90; }
  .track-items { color: #6b6259; }
}

/* ============================================================
   Ask to be told — the notification switch on the news tab
   ============================================================ */
.push-bar[hidden] { display: none !important; }
.push-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.push-say { flex: 1 1 220px; display: grid; gap: 2px; }
.push-say strong { font-size: 15px; }
.push-say span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.push-note:empty { display: none; }
.push-bar[data-state="on"] { border-color: #4bbf7a; }
.push-bar[data-state="on"] .push-note { color: #4bbf7a; }
.push-bar .btn { flex: 0 0 auto; }

/* ============================================================
   The one notice every visitor sees: cookies, and the offer
   to be told when something is posted
   ============================================================ */
/* the attribute alone loses to display:flex below */
.consent-bar[hidden] { display: none !important; }
.consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px -22px rgba(0, 0, 0, .9);
}
.consent-say {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.consent-acts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.consent-acts .btn { min-height: 44px; padding: 0 22px; }
.consent-later {
  min-height: 44px;
  padding: 0 12px;
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
}
.consent-later:hover { color: var(--text); }

/* keep the floating order button clear of the bar while it is up */
body.has-consent-bar .fab { bottom: 122px; }
body.has-consent-bar .server-mini { bottom: 122px; }

@media (max-width: 560px) {
  .consent-bar { padding: 12px 14px; gap: 10px; }
  .consent-say { flex: 1 1 100%; font-size: 13px; }
  .consent-acts { width: 100%; justify-content: flex-end; }
  body.has-consent-bar .fab { bottom: 168px; }
  body.has-consent-bar .server-mini { bottom: 168px; }
}
.push-bar .push-test { display: none; }
.push-bar[data-state="on"] .push-test { display: inline-flex; }

.install-chip {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--pill);
  background: var(--gold);
  color: #14100a;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.install-sheet[hidden] { display: none !important; }
.install-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: end center;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.45);
}
.install-sheet-card {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.install-sheet-card p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
.install-sheet-card .btn { width: 100%; min-height: 44px; }
