@font-face {
  font-family: Forum;
  src: url("/assets/fonts/Forum-Regular.ttf");
}
@font-face {
  font-family: BadScript;
  src: url("/assets/Bad_Script/BadScript-Regular.ttf");
}
:root {
  font-family: Arial, sans-serif;
  color: #eee8dd;
  background: #040d10;
  color-scheme: dark;
  --gold: #ffd28d;
  --panel: #0b2025;
  --line: #3d4137;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: var(--gold);
  text-underline-offset: 4px;
}
button,
.button {
  cursor: pointer;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #162024;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 650;
  min-height: 44px;
  display: inline-block;
  text-decoration: none;
}
button:disabled {
  opacity: 0.45;
  cursor: wait;
}
button.secondary,
button.icon-button,
.pills button {
  background: transparent;
  color: var(--gold);
  border-color: var(--line);
}
button:hover {
  filter: brightness(1.12);
}
:focus-visible {
  outline: 3px solid white;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.site-header {
  max-width: 1320px;
  margin: auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.site-header img {
  width: 112px;
  height: 66px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
main {
  max-width: 1240px;
  margin: auto;
  padding: 28px 32px 130px;
}
.intro {
  padding: 28px 0 30px;
  max-width: 960px;
}
.eyebrow {
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 11px;
}
h1 {
  font-family: BadScript, serif;
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 400;
  line-height: 1.65;
  margin: 18px 0;
}
h2 {
  font-family: Forum, serif;
  color: var(--gold);
  font-size: 30px;
  font-weight: 400;
}
h3 {
  font-family: Forum, serif;
  color: var(--gold);
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 10px;
}
p {
  line-height: 1.65;
}
#context {
  color: #b4c1be;
  max-width: 740px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.pills button[aria-pressed="true"] {
  background: var(--gold);
  color: #142025;
  border-color: var(--gold);
}
.categories {
  margin: 18px 0 30px;
}
.categories button {
  border-radius: 25px;
  font-size: 14px;
}
.search {
  max-width: 480px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 17px;
}
input,
select,
textarea {
  width: 100%;
  background: #061317;
  border: 1px solid #59615a;
  border-radius: 6px;
  color: #fff;
  padding: 13px;
  min-height: 45px;
}
textarea {
  resize: vertical;
  min-height: 72px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dish {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  display: flex;
  flex-direction: column;
}
.dish-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #102b2f;
}
.dish-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish p {
  font-size: 14px;
  color: #b9c5c1;
  margin: 0 0 15px;
}
.dish .dish-bottom {
  margin-top: auto;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.price {
  white-space: nowrap;
  font-size: 20px;
  color: var(--gold);
}
.weight {
  font-size: 13px;
  color: #9caaa5;
  margin-bottom: 14px;
}
.supplement {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 9px;
  margin: 8px 0;
}
.supplement input {
  width: 18px;
  min-height: 18px;
}
.notice {
  padding: 15px 18px;
  background: #19342e;
  border: 1px solid #42664f;
  border-radius: 8px;
  line-height: 1.5;
  margin: 15px 0;
}
.error {
  background: #392426;
  border-color: #ad6e65;
  color: #ffe2db;
}
.panel {
  margin-top: 35px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 25px;
}
.cart-toggle {
  position: fixed;
  bottom: 24px;
  right: 28px;
  box-shadow: 0 8px 45px #0008;
  z-index: 10;
  border-radius: 30px;
  padding: 17px 24px;
}
.cart-toggle span {
  margin-left: 18px;
}
.footer-note {
  color: #aeb9b5;
  margin-top: 35px;
  font-size: 14px;
}
dialog {
  color: #eee8dd;
  background: #0b2025;
  border: 1px solid #6b6551;
  border-radius: 14px;
  width: min(590px, calc(100% - 24px));
  max-height: 90dvh;
  padding: 26px;
}
dialog::backdrop {
  background: #000a;
  backdrop-filter: blur(4px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: -26px;
  background: #0b2025;
  padding: 8px 0;
  z-index: 1;
}
.dialog-header h2 {
  margin: 12px 0;
}
.icon-button {
  font-size: 25px;
  padding: 6px 14px;
}
.cart-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.cart-row h3 {
  font-size: 23px;
}
.quantity {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
}
.quantity button {
  padding: 8px 14px;
}
.quantity .remove {
  margin-left: auto;
  font-size: 13px;
}
.cart-row textarea {
  min-height: 48px;
}
.total {
  font-size: 22px;
  color: var(--gold);
}
.muted {
  color: #acbbb4;
  font-size: 13px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 18px 0;
}
legend {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
}
#checkout-submit {
  width: 100%;
}
.chat-message {
  padding: 12px;
  border-left: 2px solid var(--gold);
  margin-bottom: 12px;
}
.chat-message small {
  display: block;
  color: var(--gold);
  margin-bottom: 7px;
}
#chat-log {
  max-height: 300px;
  overflow: auto;
}
#chat-form {
  margin-top: 20px;
}
.request {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  main {
    padding: 18px 16px 110px;
  }
  .site-header {
    padding: 14px 16px;
  }
  .site-header nav {
    gap: 14px;
    font-size: 12px;
  }
  .site-header img {
    width: 80px;
    height: 50px;
  }
  .intro {
    padding: 10px 0 20px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dish-photo {
    height: 210px;
  }
  .categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .categories button {
    flex-shrink: 0;
  }
  .cart-toggle {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    display: flex;
    justify-content: space-between;
  }
  dialog {
    padding: 20px;
  }
  .dialog-header {
    top: -20px;
  }
  .pills button {
    font-size: 13px;
  }
  h1 {
    font-size: 30px;
  }
}

/* Category-first browsing: the same live menu, one category at a time. */
:root {
  --site-header-height: 82px;
  --menu-toolbar-height: 78px;
}
html {
  scroll-padding-top: calc(
    var(--site-header-height) + var(--menu-toolbar-height) + 20px
  );
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--site-header-height);
  max-width: none;
  padding: 12px max(24px, calc((100vw - 1320px) / 2));
  background: #040d10f5;
  backdrop-filter: blur(16px);
}
.site-header img {
  width: 96px;
  height: 54px;
}
main {
  max-width: 1376px;
  padding: 20px 28px 120px;
}
.intro {
  padding: 20px 0 18px;
}
h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 14px 0;
}
.category-selected .intro {
  padding: 2px 0 14px;
}
.category-selected .intro > h1,
.category-selected .intro > .eyebrow {
  display: none;
}
.category-selected #context {
  font-size: 13px;
  margin: 10px 0;
}
.category-selected .pills {
  margin-top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.menu-toolbar {
  position: sticky;
  top: var(--site-header-height);
  z-index: 25;
  padding: 12px 0;
  background: #040d10f5;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.toolbar-top {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}
.toolbar-top .search {
  flex: 1;
  max-width: 440px;
  margin: 0;
}
.toolbar-top input {
  background: #0b2025;
}
#all-categories {
  white-space: nowrap;
  border-radius: 8px;
  padding-inline: 18px;
}
#menu-position {
  margin-left: auto;
  text-align: right;
}
#categories {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 10px 0 0;
  padding: 0 0 4px;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}
#categories button {
  white-space: nowrap;
  flex-shrink: 0;
  background: transparent;
  color: #c8d1cb;
  border-color: var(--line);
  border-radius: 24px;
  font-size: 13px;
  padding: 10px 16px;
}
#categories button[aria-current="true"] {
  color: #152025;
  background: var(--gold);
  border-color: var(--gold);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 6px 0;
  font-size: 36px;
}
.section-heading .eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
}
#category-overview,
#category-view {
  scroll-margin-top: 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.category-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
  color: var(--gold);
  padding: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.18s,
    transform 0.18s;
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  filter: none;
}
.category-card img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}
.category-card-copy {
  padding: 18px 20px;
  display: grid;
  gap: 7px;
}
.category-card strong {
  font-family: Forum, serif;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
}
.category-card .muted {
  font-size: 12px;
  font-weight: 400;
}
.category-layout {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.category-sidebar {
  position: sticky;
  top: calc(var(--site-header-height) + var(--menu-toolbar-height) + 18px);
  min-width: 0;
}
.category-sidebar > .eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
}
#category-rail {
  display: grid;
  gap: 9px;
  overflow-y: auto;
  max-height: calc(
    100dvh - var(--site-header-height) - var(--menu-toolbar-height) - 74px
  );
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: 2px 9px 8px 2px;
}
#category-rail button {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  min-height: 66px;
  padding: 13px 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0b2025;
  color: #ccd5cf;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
}
#category-rail img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
#category-rail button[aria-current="true"] {
  border-color: var(--gold);
  color: var(--gold);
  background: #242a22;
}
#category-content {
  min-width: 0;
}
.category-heading {
  min-height: 67px;
}
.category-heading h2:focus,
#overview-title:focus {
  outline: none;
}
.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}
.dish {
  min-width: 0;
}
.dish-photo {
  height: auto;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.dish-body {
  padding: 18px;
}
.dish h3 {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #f1e9d9;
}
.dish p {
  font-size: 13px;
  line-height: 1.6;
}
.dish .price {
  font-size: 19px;
}
.dish-bottom button {
  font-size: 13px;
  padding: 10px 12px;
}
.dish-text {
  grid-column: 1 / -1;
}
.dish-text .dish-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 20px;
}
.dish-text h3,
.dish-text p,
.dish-text .weight,
.dish-text .supplement {
  grid-column: 1;
}
.dish-text .dish-bottom {
  grid-column: 2;
  grid-row: 1 / span 10;
  align-self: center;
  margin: 0;
}
.dish-text p {
  margin-bottom: 0;
}
.category-footer {
  padding-top: 30px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  justify-items: start;
  gap: 16px;
}
.next-category {
  width: 100%;
  background: #152c2d;
  color: var(--gold);
  border-color: #59634a;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  border-radius: 12px;
}
.next-category span {
  display: grid;
  gap: 10px;
}
.next-category small {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 400;
}
.next-category strong {
  font:
    32px Forum,
    serif;
}
.next-category img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
}
.empty-menu {
  grid-column: 1 / -1;
  padding: 24px 0;
}
#notice {
  position: fixed;
  bottom: 92px;
  right: 28px;
  max-width: min(390px, calc(100vw - 32px));
  z-index: 20;
  box-shadow: 0 6px 24px #0004;
}
@media (min-width: 700px) {
  #categories {
    display: none;
  }
}
@media (min-width: 1600px) {
  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  main {
    padding-inline: 22px;
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .category-layout {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 20px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  #category-rail {
    padding-right: 5px;
  }
  #category-rail img {
    width: 54px;
    height: 54px;
  }
  .dish-body {
    padding: 16px;
  }
}
@media (max-width: 699px) {
  :root {
    --site-header-height: 68px;
    --menu-toolbar-height: 122px;
  }
  main {
    padding: 12px 16px 110px;
  }
  .site-header {
    padding: 8px 16px;
  }
  .site-header img {
    width: 78px;
    height: 48px;
  }
  .site-header nav {
    gap: 16px;
    font-size: 12px;
  }
  .site-header nav a:first-child {
    display: none;
  }
  .intro {
    padding: 12px 0 10px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.65;
  }
  #context {
    font-size: 13px;
  }
  .menu-toolbar {
    margin-inline: -16px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }
  .toolbar-top {
    gap: 10px;
    min-height: 46px;
  }
  #all-categories {
    padding: 10px 12px;
    font-size: 12px;
  }
  .toolbar-top input {
    font-size: 14px;
    min-height: 44px;
    padding: 11px;
  }
  #menu-position {
    display: none;
  }
  .section-heading {
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 18px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading > .muted {
    white-space: nowrap;
    font-size: 11px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .category-card {
    border-radius: 10px;
  }
  .category-card img {
    aspect-ratio: 1.25;
  }
  .category-card-copy {
    padding: 14px 12px;
    gap: 6px;
  }
  .category-card strong {
    font-size: 23px;
  }
  .category-card .muted {
    font-size: 11px;
  }
  .category-layout {
    display: block;
  }
  .category-sidebar {
    display: none;
  }
  .category-heading {
    min-height: 62px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dish-photo {
    aspect-ratio: 1.5;
  }
  .dish-body {
    padding: 18px;
  }
  .dish h3 {
    font-size: 18px;
  }
  .dish-text .dish-body {
    column-gap: 12px;
    padding: 16px;
  }
  .dish-text h3 {
    font-size: 16px;
  }
  .dish-text .dish-bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .dish-text .price {
    font-size: 17px;
  }
  .next-category {
    padding: 20px;
  }
  .next-category strong {
    font-size: 29px;
  }
  .next-category img {
    width: 62px;
    height: 62px;
  }
  #notice {
    bottom: 86px;
    right: 16px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-card {
    transition: none;
  }
}
#category-select {
  width: auto;
  max-width: 240px;
  margin-left: auto;
  font-size: 13px;
  background: #0b2025;
}
.category-card:not(:has(img)) {
  justify-content: center;
  min-height: 145px;
}
.menu-subheading {
  grid-column: 1 / -1;
  font:
    26px Forum,
    serif;
  margin: 15px 0 0;
}
@media (max-width: 699px) {
  #category-select {
    display: none;
  }
}

/* Checkout lives at the edge of the page, with only the current step visible. */
body:has(#cart-dialog[open]) { overflow: hidden; }
#cart-dialog {
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(480px, 100%);
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: -24px 0 90px #0006;
  overflow: hidden;
}
#cart-dialog[open] { display: flex; flex-direction: column; }
#cart-dialog::backdrop { background: #02090c99; backdrop-filter: blur(2px); }
#cart-dialog .dialog-header {
  position: static;
  flex-shrink: 0;
  padding: 20px 28px 0;
}
#cart-dialog .dialog-header h2 { font-size: 32px; margin: 6px 0; }
#cart-close { border: 0; font-weight: 400; }
#checkout-context { margin: 6px 28px 22px; }
.checkout-steps {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  list-style: none;
  padding: 0 28px 22px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.checkout-steps li { flex: 1; display: grid; gap: 9px; font-size: 11px; color: #92a49f; }
.checkout-steps li span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #50615c;
  border-radius: 50%;
  font-size: 12px;
}
.checkout-steps li[aria-current] { color: var(--gold); }
.checkout-steps li[aria-current] span { color: #162024; background: var(--gold); border-color: var(--gold); }
.checkout-steps li.complete span { color: var(--gold); border-color: var(--gold); }
#checkout-form { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.checkout-body { padding: 26px 28px; overflow-y: auto; overscroll-behavior: contain; flex: 1; min-height: 0; }
#checkout-step-title { font-size: 27px; margin: 0 0 20px; }
#checkout-step-title:focus { outline: none; }
#customer-fields { margin: 0; }
#customer-fields legend { display: none; }
.checkout-footer { flex-shrink: 0; border-top: 1px solid var(--line); padding: 18px 28px max(22px, env(safe-area-inset-bottom)); background: #091b20; }
.checkout-footer .total { margin: 0 0 4px; font-size: 20px; }
.checkout-estimate { font-size: 11px; margin: 0 0 16px; line-height: 1.5; }
.checkout-navigation { display: flex; gap: 10px; }
#checkout-submit { width: auto; flex: 1; }
#checkout-back { flex-shrink: 0; }
#cart-dialog .cart-row { padding: 0 0 18px; margin-bottom: 22px; }
#cart-dialog .cart-row h3 { font-size: 23px; margin-bottom: 6px; }
#cart-dialog .cart-row label { margin: 16px 0 0; font-size: 12px; color: #acbbb4; }
#cart-dialog .cart-row textarea { padding: 10px 12px; font-size: 13px; min-height: 42px; height: 42px; }
#cart-dialog .quantity { gap: 10px; }
#cart-dialog .quantity button { background: transparent; color: var(--gold); border-color: var(--line); }
#cart-dialog .quantity .remove { border: 0; padding-inline: 4px; }
.upsell-card { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.upsell-card img { width: 68px; height: 76px; object-fit: cover; border-radius: 8px; }
.upsell-copy { flex: 1; min-width: 135px; }
.upsell-copy h4 { font: 23px Forum, serif; color: var(--gold); margin: 0 0 8px; }
.upsell-copy p { margin: 0 0 8px; }
.upsell-copy .price { font-size: 16px; }
.upsell-card > button { font-size: 13px; padding: 10px 13px; }
.review-line { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5; }
.review-line > span { white-space: nowrap; color: var(--gold); }
.review-line small { display: block; color: #acbbb4; }
.review-customer { margin-top: 24px; font-size: 13px; overflow-wrap: anywhere; }
.review-customer p { margin: 5px 0; }
#quote-review { font-size: 13px; }
#quote-review strong { font-size: 20px; color: var(--gold); }
#quote-review p:last-child { margin-bottom: 0; color: #acbbb4; }
@media (max-width: 580px) {
  #cart-dialog { border: 0; }
  #cart-dialog .dialog-header { padding: 16px 20px 0; }
  #checkout-context { margin: 4px 20px 18px; }
  .checkout-steps { padding: 0 20px 18px; }
  .checkout-body { padding: 22px 20px; }
  .checkout-footer { padding-inline: 20px; }
}
