:root {
  color-scheme: dark;
  --bt-charcoal: oklch(0.159 0.012 61.3);
  --bt-charcoal-raised: oklch(0.191 0.017 53.5);
  --bt-surface: oklch(0.219 0.026 52.5);
  --bt-surface-muted: oklch(0.247 0.029 51.9);
  --bt-cream: oklch(0.943 0.028 74.3);
  --bt-cream-deep: oklch(0.924 0.029 69.2);
  --bt-muted: oklch(0.734 0.043 70.6);
  --bt-orange: oklch(0.696 0.17 42.5);
  --bt-orange-pressed: oklch(0.628 0.169 41.3);
  --bt-gold: oklch(0.802 0.146 89.8);
  --bt-success: oklch(0.705 0.112 136.5);
  --bt-error: oklch(0.665 0.205 27);
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-hero: 28px;
  --radius-pill: 999px;
  --container: 1240px;
  --shadow-raised:
    0 0 0 1px rgb(0 0 0 / 0.05),
    0 2px 6px rgb(0 0 0 / 0.08),
    0 18px 48px -24px rgb(0 0 0 / 0.34);
  --shadow-dark-ring: 0 0 0 1px rgb(255 255 255 / 0.1);
  --z-header: 100;
  --z-modal: 200;
  --z-toast: 400;
  font-synthesis: none;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bt-charcoal);
  color: var(--bt-cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: from-font;
  text-underline-position: from-font;
}

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

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:where(button, a, input, select, textarea):focus-visible {
  outline: 2px solid oklch(1 0 0 / 0.82);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

#stage {
  min-height: 100vh;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bt-cream);
  color: var(--bt-charcoal);
  transform: translateY(-160%);
  transition: transform 150ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.icon {
  flex: 0 0 auto;
  pointer-events: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bt-cream);
  text-decoration: none;
  user-select: none;
}

.brand-lockup__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  outline: 0;
}

.brand-lockup__type {
  display: grid;
  line-height: 1;
}

.brand-lockup__type strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.brand-lockup__type small {
  margin-block-start: 3px;
  color: var(--bt-gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.brand-lockup--compact .brand-lockup__mark {
  width: 36px;
  height: 36px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    box-shadow 150ms ease-out,
    transform 150ms ease-out;
}

.button--primary {
  background: var(--bt-orange);
  color: var(--bt-charcoal);
  box-shadow:
    0 0 0 1px oklch(1 0 0 / 0.08) inset,
    0 8px 24px -14px oklch(0.696 0.17 42.5 / 0.75);
}

.button--ghost {
  background: oklch(1 0 0 / 0.06);
  color: currentColor;
  box-shadow: 0 0 0 1px oklch(1 0 0 / 0.11) inset;
}

.button--cream {
  background: var(--bt-cream);
  color: var(--bt-charcoal);
}

.button--wide {
  width: 100%;
}

.icon-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.06);
  color: currentColor;
  cursor: pointer;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 4px;
  cursor: pointer;
}

:where(.button, .icon-button, .menu-card__add, .compact-menu-row button, .quantity-control button):active {
  transform: scale(0.96);
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 3px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: currentColor;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.category-tab[aria-pressed="true"] {
  background: var(--bt-orange);
  color: var(--bt-charcoal);
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.menu-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  background: var(--bt-surface-muted);
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgb(255 255 255 / 0.1);
  outline-offset: -1px;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-card__badge {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 6px 9px;
  border-radius: var(--radius-pill);
  background: oklch(0.159 0.012 61.3 / 0.88);
  color: var(--bt-cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.menu-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-card h3 {
  margin-block-end: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.menu-card p {
  min-height: 3em;
  margin-block-end: 0;
  color: var(--bt-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.menu-card__price {
  flex: 0 0 auto;
  color: var(--bt-orange);
  font-variant-numeric: tabular-nums;
}

.menu-card__add {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-md);
  background: oklch(1 0 0 / 0.07);
  color: currentColor;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.compact-menu-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 14px;
  padding-block: 14px;
  border-block-end: 1px solid oklch(0.159 0.012 61.3 / 0.1);
}

.compact-menu-row img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  outline: 1px solid rgb(0 0 0 / 0.1);
  outline-offset: -1px;
}

.compact-menu-row h3,
.compact-menu-row p {
  margin-block-end: 0;
}

.compact-menu-row h3 {
  font-size: 0.96rem;
}

.compact-menu-row p {
  overflow: hidden;
  color: oklch(0.42 0.035 60);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-menu-row > strong {
  font-variant-numeric: tabular-nums;
}

.compact-menu-row > button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--bt-charcoal);
  color: var(--bt-cream);
  font-weight: 700;
  cursor: pointer;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.mini-basket {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--bt-cream);
  color: var(--bt-charcoal);
  box-shadow: var(--shadow-raised);
}

.mini-basket--empty {
  place-items: start;
  min-height: 230px;
  align-content: center;
}

.mini-basket__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: oklch(0.696 0.17 42.5 / 0.14);
  color: var(--bt-orange-pressed);
}

.mini-basket h3,
.mini-basket p {
  margin-block-end: 0;
}

.mini-basket p {
  color: oklch(0.42 0.03 55);
  font-size: 0.88rem;
}

.mini-basket__top,
.mini-basket__total,
.mini-basket__lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-basket__top h3 {
  font-size: 1.3rem;
}

.mini-basket__top > span {
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-basket__lines {
  display: grid;
  gap: 10px;
  font-size: 0.82rem;
}

.mini-basket__lines strong,
.mini-basket__total strong {
  font-variant-numeric: tabular-nums;
}

.mini-basket__total {
  padding-block-start: 14px;
  border-block-start: 1px solid oklch(0.159 0.012 61.3 / 0.12);
}

.member-snapshot {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(circle at 86% 0%, oklch(0.802 0.146 89.8 / 0.26), transparent 34%),
    linear-gradient(145deg, var(--bt-surface-muted), var(--bt-charcoal));
  color: var(--bt-cream);
  box-shadow: var(--shadow-dark-ring);
}

.member-snapshot::after {
  content: "FC";
  position: absolute;
  z-index: -1;
  inset-inline-end: -22px;
  inset-block-end: -54px;
  color: oklch(1 0 0 / 0.035);
  font-family: var(--font-display);
  font-size: 15rem;
  line-height: 1;
  pointer-events: none;
}

.member-snapshot__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--bt-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.member-snapshot__top img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  outline: 0;
}

.member-snapshot small {
  display: block;
  color: var(--bt-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.member-snapshot > div > strong {
  display: block;
  margin-block-start: 4px;
  font-size: 1.18rem;
}

.member-snapshot__points {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.member-snapshot__points strong {
  font-family: var(--font-display);
  font-size: 4.25rem !important;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
}

.member-snapshot__progress {
  height: 5px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.1);
}

.member-snapshot__progress i {
  width: var(--progress);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--bt-gold);
}

.member-snapshot p {
  max-width: 36ch;
  margin-block-end: 0;
  color: var(--bt-muted);
  font-size: 0.78rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 56px max(20px, calc((100vw - var(--container)) / 2));
  background: oklch(0.11 0.01 55);
  color: var(--bt-cream);
}

.site-footer p {
  max-width: 34ch;
  margin-block: 12px 0;
  color: var(--bt-muted);
  font-size: 0.82rem;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration-color: oklch(1 0 0 / 0.28);
  text-underline-offset: 3px;
}

#portal {
  position: relative;
  z-index: var(--z-modal);
}

.modal-backdrop {
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background: oklch(0.08 0.01 55 / 0.78);
  animation: backdrop-in 180ms ease-out both;
}

.modal {
  width: min(100%, 540px);
  max-height: min(860px, calc(100dvh - 48px));
  overflow-y: auto;
  padding: 6px;
  border-radius: 26px;
  background: var(--bt-surface-muted);
  color: var(--bt-cream);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.1),
    0 30px 90px rgb(0 0 0 / 0.42);
  animation: modal-in 220ms cubic-bezier(0.32, 0.72, 0, 1) both;
}

.modal--wide {
  width: min(100%, 780px);
}

.modal__header {
  position: sticky;
  z-index: 2;
  inset-block-start: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 18px 16px;
  border-radius: 20px 20px 0 0;
  background: var(--bt-surface-muted);
}

.modal__header .eyebrow {
  color: var(--bt-gold);
}

.modal__header h2 {
  margin-block: 3px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
}

.signup-form,
.otp-form,
.checkout-form,
.account-dialog,
.order-success,
.basket-dialog,
.modal-empty,
.mobile-nav-links {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: var(--bt-charcoal-raised);
}

.signup-form,
.otp-form,
.checkout-form {
  display: grid;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.fulfilment-options legend {
  color: var(--bt-cream);
  font-size: 0.8rem;
  font-weight: 700;
}

.field label span {
  color: var(--bt-muted);
  font-weight: 500;
}

.field :where(input, textarea, select),
.phone-field {
  width: 100%;
  min-height: 50px;
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius-md);
  background: var(--bt-surface);
  color: var(--bt-cream);
  font-size: 16px;
}

.field :where(input, textarea, select) {
  padding: 12px 14px;
}

.field textarea {
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field :where(input, textarea, select)[aria-invalid="true"],
.phone-field:has(input[aria-invalid="true"]) {
  border-color: var(--bt-error);
  box-shadow: 0 0 0 1px var(--bt-error);
}

.phone-field {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.phone-field > span {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-inline: 14px;
  border-inline-end: 1px solid oklch(1 0 0 / 0.12);
  color: var(--bt-gold);
  font-weight: 700;
  user-select: none;
}

.phone-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.phone-field:focus-within {
  outline: 2px solid oklch(1 0 0 / 0.82);
  outline-offset: 3px;
}

.phone-field input:focus-visible {
  outline: 0;
}

.field__hint,
.field__error {
  min-height: 1.25em;
  font-size: 0.73rem;
}

.field__hint {
  color: var(--bt-muted);
}

.field__error {
  color: oklch(0.78 0.15 28);
}

.check-row {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--bt-muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.check-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 2px 0 0;
  accent-color: var(--bt-orange);
}

.preview-note {
  margin-block-end: 0;
  color: var(--bt-muted);
  font-size: 0.72rem;
  text-align: center;
}

.otp-form > p:first-child {
  margin-block-end: 0;
  color: var(--bt-muted);
  font-size: 0.88rem;
}

.otp-form > p strong {
  color: var(--bt-gold);
  font-variant-numeric: tabular-nums;
}

.basket-dialog {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 18px;
}

.basket-dialog__lines {
  display: grid;
  align-content: start;
}

.basket-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding-block: 13px;
  border-block-end: 1px solid oklch(1 0 0 / 0.09);
}

.basket-line img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  outline: 1px solid rgb(255 255 255 / 0.1);
  outline-offset: -1px;
}

.basket-line h3,
.basket-line p {
  margin-block-end: 0;
}

.basket-line h3 {
  font-size: 0.86rem;
}

.basket-line p {
  color: var(--bt-muted);
  font-size: 0.72rem;
}

.basket-line > strong {
  min-width: 55px;
  text-align: end;
  font-variant-numeric: tabular-nums;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  background: oklch(1 0 0 / 0.06);
}

.quantity-control button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.quantity-control output {
  min-width: 20px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.basket-dialog__footer {
  display: grid;
  align-content: end;
  gap: 15px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--bt-surface);
}

.basket-dialog__footer > div,
.checkout-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.basket-dialog__footer > div strong {
  color: var(--bt-gold);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
}

.basket-dialog__footer p {
  margin-block-end: 0;
  color: var(--bt-muted);
  font-size: 0.75rem;
}

.modal-empty {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
}

.modal-empty > span,
.order-success__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: oklch(0.696 0.17 42.5 / 0.16);
  color: var(--bt-orange);
}

.modal-empty h3,
.modal-empty p {
  margin-block-end: 0;
}

.modal-empty p {
  max-width: 42ch;
  color: var(--bt-muted);
}

.fulfilment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfilment-options legend {
  grid-column: 1 / -1;
  margin-block-end: 6px;
}

.fulfilment-card {
  position: relative;
  cursor: pointer;
}

.fulfilment-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.fulfilment-card > span {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 15px;
  border: 1px solid oklch(1 0 0 / 0.13);
  border-radius: var(--radius-lg);
  background: var(--bt-surface);
}

.fulfilment-card input:checked + span {
  border-color: var(--bt-orange);
  box-shadow: 0 0 0 1px var(--bt-orange);
}

.fulfilment-card input:focus-visible + span {
  outline: 2px solid oklch(1 0 0 / 0.82);
  outline-offset: 3px;
}

.fulfilment-card strong {
  font-size: 0.88rem;
}

.fulfilment-card small {
  color: var(--bt-muted);
  font-size: 0.7rem;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 15px;
  border-radius: var(--radius-md);
  background: var(--bt-surface);
  font-size: 0.78rem;
}

.checkout-summary strong {
  font-variant-numeric: tabular-nums;
}

.checkout-summary__total {
  margin-block-start: 6px;
  padding-block-start: 12px;
  border-block-start: 1px solid oklch(1 0 0 / 0.1);
  font-size: 0.9rem;
}

.account-dialog {
  display: grid;
  gap: 18px;
}

.account-dialog__card {
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bt-surface-muted), var(--bt-charcoal));
  box-shadow: var(--shadow-dark-ring);
  text-align: center;
}

.account-dialog__card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  outline: 0;
}

.account-dialog__card span {
  margin-block-start: 10px;
  color: var(--bt-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.account-dialog__card h3 {
  margin-block: 5px 0;
}

.account-dialog__card p {
  margin-block-end: 14px;
  color: var(--bt-muted);
  font-size: 0.78rem;
}

.account-dialog__card > strong {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.account-dialog__actions {
  display: grid;
  gap: 8px;
}

.order-success {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.order-success__icon {
  background: oklch(0.705 0.112 136.5 / 0.16);
  color: var(--bt-success);
}

.order-success h3 {
  margin-block-end: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.order-success > p:not(.preview-note) {
  max-width: 42ch;
  margin-block-end: 0;
  color: var(--bt-muted);
}

.order-success__steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.order-success__steps span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: oklch(1 0 0 / 0.05);
  color: var(--bt-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.order-success__steps span[data-done] {
  background: oklch(0.705 0.112 136.5 / 0.14);
  color: var(--bt-success);
}

.mobile-nav-links {
  display: grid;
  gap: 4px;
}

.mobile-nav-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block-end: 1px solid oklch(1 0 0 / 0.08);
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-decoration: none;
}

.website-toast {
  position: fixed;
  z-index: var(--z-toast);
  inset-inline-end: 20px;
  inset-block-start: 20px;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: var(--bt-cream);
  color: var(--bt-charcoal);
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 0.08),
    0 18px 50px rgb(0 0 0 / 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease-out,
    transform 180ms ease-out;
}

.website-toast[data-visible] {
  opacity: 1;
  transform: translateY(0);
}

.noscript-note {
  position: fixed;
  z-index: 1000;
  inset: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--bt-cream);
  color: var(--bt-charcoal);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) and (pointer: fine) {
  .button--primary:hover {
    background: color-mix(in oklch, var(--bt-orange) 86%, black);
    box-shadow:
      0 0 0 1px oklch(1 0 0 / 0.1) inset,
      0 12px 28px -14px oklch(0.696 0.17 42.5 / 0.9);
  }

  .button--ghost:hover,
  .icon-button:hover,
  .menu-card__add:hover {
    background: oklch(1 0 0 / 0.11);
  }

  .menu-card:hover .menu-card__media img {
    transform: scale(1.025);
  }

  .compact-menu-row > button:hover {
    background: var(--bt-orange);
    color: var(--bt-charcoal);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 20px;
    padding-block-end: 110px;
  }

  .basket-dialog {
    grid-template-columns: 1fr;
  }

  .basket-dialog__footer {
    position: static;
  }
}

@media (max-width: 560px) {
  .button {
    padding-inline: 15px;
  }

  .brand-lockup__type strong {
    font-size: 1.3rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal {
    width: 100%;
    max-height: 92dvh;
    border-radius: 26px 26px 0 0;
  }

  .basket-line {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .basket-line img {
    width: 52px;
    height: 52px;
  }

  .basket-line > strong {
    display: none;
  }

  .quantity-control {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .fulfilment-options {
    grid-template-columns: 1fr;
  }

  .compact-menu-row {
    grid-template-columns: 58px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .compact-menu-row img {
    width: 58px;
    height: 58px;
  }

  .compact-menu-row > strong {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .compact-menu-row > button {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .website-toast {
    inset-block-start: 12px;
    inset-inline: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  :where(*, *::before, *::after) {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
