:root {
  color-scheme: light;
  --paper: #d4cbbb;
  --paper-deep: #b9ad99;
  --sheet: rgba(232, 226, 213, .92);
  --sheet-solid: #e8e2d5;
  --ink: #4b4943;
  --muted: #77736a;
  --line: rgba(75, 71, 63, .28);
  --line-dark: rgba(69, 65, 58, .58);
  --wood: #66533f;
  --wood-dark: #40362c;
  --wood-faded: #9d8a71;
  --stamp: #4e5846;
  --radius: 3px;
  --shadow: 7px 9px 0 rgba(70, 61, 48, .13);
  --font-typewriter: "American Typewriter", "Courier New", "Songti TC", "PMingLiU", serif;
  --font-typewriter-mono: "Courier New", "SFMono-Regular", "Songti TC", "PMingLiU", monospace;
  font-family: var(--font-typewriter);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(192, 183, 166, .74), rgba(192, 183, 166, .74)),
    url("assets/kraft-paper.jpg");
  background-size: auto, 720px auto;
  background-blend-mode: color, multiply;
  position: relative;
  font-weight: 500;
  letter-spacing: .012em;
  text-shadow: .22px .15px rgba(75, 73, 67, .18);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .29;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(42, 38, 32, .048) 3px 4px),
    radial-gradient(circle at center, rgba(39, 35, 29, .2) 0 .52px, transparent .72px),
    radial-gradient(ellipse at 24% 18%, rgba(255, 248, 232, .22), transparent 34%),
    radial-gradient(ellipse at 78% 72%, rgba(72, 61, 48, .12), transparent 38%);
  background-size: auto, 5px 5px, auto, auto;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px double var(--ink); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: .7rem .9rem;
  background: var(--ink);
  color: var(--sheet-solid);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header, .staff-header {
  width: min(1180px, calc(100% - 30px));
  min-height: 68px;
  margin: 14px auto 0;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background-color: rgba(232, 226, 213, .92);
  background-image:
    linear-gradient(rgba(239, 233, 220, .18), rgba(239, 233, 220, .18)),
    url("assets/zine-paper-texture-v1.webp");
  background-size: auto, 860px auto;
  background-blend-mode: normal, multiply;
  position: sticky;
  top: 10px;
  z-index: 20;
  box-shadow: 4px 5px 0 rgba(59, 52, 43, .11);
  backdrop-filter: blur(8px) grayscale(.25);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  font-family: var(--font-typewriter-mono);
  font-weight: 700;
  letter-spacing: .085em;
  line-height: 1;
  text-shadow: .45px 0 rgba(37, 35, 31, .45), -.3px .25px rgba(37, 35, 31, .22);
}
.wordmark small {
  display: block;
  margin-top: .28rem;
  color: var(--muted);
  font-family: var(--font-typewriter-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
}
.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--sheet-solid);
  background: var(--ink);
  font-family: "Songti TC", "Yu Mincho", serif;
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 2px var(--sheet-solid);
}
.header-actions { display: flex; align-items: center; gap: .45rem; }
.staff-link, .lang-button, .staff-secondary {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: .64rem .85rem;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: .82rem;
  font-family: var(--font-typewriter-mono);
  font-weight: 700;
  letter-spacing: .055em;
  text-shadow: .35px 0 currentColor;
}
.lang-button { min-width: 46px; }
.staff-link:hover, .lang-button:hover, .staff-secondary:hover { color: var(--sheet-solid); background: var(--wood-dark); }

.hero {
  width: min(1180px, calc(100% - 30px));
  min-height: calc(100dvh - 116px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 14px;
}
.hero-copy {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background-color: var(--sheet-solid);
  background-image:
    linear-gradient(rgba(239, 233, 220, .14), rgba(239, 233, 220, .14)),
    url("assets/zine-paper-texture-v1.webp");
  background-size: auto, 900px auto;
  background-blend-mode: normal, multiply;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-copy::after {
  content: "ISSUE 01  /  CAUSEWAY BAY";
  position: absolute;
  right: -4.3rem;
  top: 7.1rem;
  transform: rotate(90deg);
  font-family: var(--font-typewriter-mono);
  font-size: .6rem;
  letter-spacing: .16em;
  color: var(--muted);
}
.kicker {
  margin: 0 0 .85rem;
  color: var(--stamp);
  font-family: var(--font-typewriter-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: .35px 0 currentColor, -.25px .2px rgba(78, 88, 70, .28);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3, h4, strong, summary {
  font-family: var(--font-typewriter);
  text-shadow: .45px 0 rgba(75, 73, 67, .34), -.3px .25px rgba(75, 73, 67, .16);
}
.hero-copy h1,
.section-heading h2,
.category-heading h3,
.menu-item h4,
.visit-copy h2,
.faq h2 {
  color: #595750;
  -webkit-mask-image: url("assets/distressed-type-mask-v1.png");
  mask-image: url("assets/distressed-type-mask-v1.png");
  -webkit-mask-size: 540px 540px;
  mask-size: 540px 540px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-position: 37px 19px;
  mask-position: 37px 19px;
  text-shadow: .4px .2px rgba(75, 73, 67, .2);
}
.category-heading h3, .menu-item h4 { -webkit-mask-position: 173px 91px; mask-position: 173px 91px; }
.visit-copy h2, .faq h2 { -webkit-mask-position: 311px 227px; mask-position: 311px 227px; }
h1 {
  max-width: 9.5ch;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  line-height: .96;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(.96rem, 1.6vw, 1.12rem);
  line-height: 1.72;
}
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 1.8rem; }
.choice {
  min-height: 116px;
  padding: .9rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .72rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  background: transparent;
  transition: transform .16s ease, background-color .16s ease;
}
.choice:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--line-dark); }
.choice:active, .add-button:active, .price-choice:active, .topping-choice:active, .cart-submit:active, .staff-row button:active { transform: translate(1px, 1px); }
.choice-primary { color: var(--sheet-solid); background: var(--wood); }
.choice-secondary { color: var(--sheet-solid); background: var(--ink); }
.choice.is-selected { outline: 3px double var(--stamp); outline-offset: 3px; }
.choice-number {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-typewriter-mono);
  font-weight: 700;
}
.choice strong { font-size: .96rem; }
.choice small { opacity: .68; font-size: .76rem; }
.demo-note { margin: .9rem 0 0; color: var(--muted); font-size: .72rem; }
.hero-media {
  min-height: 570px;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--wood-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background: radial-gradient(circle, #231f19 0 .75px, transparent .9px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
  filter: saturate(.66) contrast(1.06) sepia(.08);
}

.status-shell, .menu-section, .flow-section, .visit-section, footer {
  width: min(1180px, calc(100% - 30px));
  margin: 18px auto 0;
}
.status-shell { text-align: right; }
.status-card {
  padding: clamp(1.3rem, 3.5vw, 2.25rem);
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius);
  color: var(--sheet-solid);
  background: var(--wood-dark);
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 2rem;
  text-align: left;
  box-shadow: var(--shadow);
}
.status-card .kicker { color: #c5b9a5; }
.ticket-number {
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .9;
}
.status-copy { align-self: center; }
.status-badge {
  display: inline-block;
  padding: .32rem .6rem;
  border: 1px solid #cabca7;
  border-radius: var(--radius);
  color: #e0d6c6;
  font-family: "Courier New", monospace;
  font-size: .72rem;
  font-weight: 900;
}
.status-copy h2 { margin: .7rem 0 .35rem; font-size: clamp(1.7rem, 3.8vw, 3.2rem); }
.status-copy p { margin: 0; color: #c6baa8; }
.text-button { margin-top: .55rem; border: 0; color: var(--ink); background: transparent; text-decoration: underline; cursor: pointer; }

.menu-section, .flow-section, .visit-section {
  padding: clamp(1.6rem, 5vw, 4.8rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background-color: var(--sheet-solid);
  background-image:
    linear-gradient(rgba(239, 233, 220, .12), rgba(239, 233, 220, .12)),
    url("assets/zine-paper-texture-v1.webp");
  background-size: auto, 920px auto;
  background-blend-mode: normal, multiply;
  box-shadow: var(--shadow);
}
.section-heading { max-width: 690px; }
.section-heading h2, .visit-copy h2, .faq h2 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading > p:last-child { max-width: 58ch; color: var(--muted); }
.menu-nav {
  margin: .55rem 0 1rem;
  display: flex;
  align-items: end;
  gap: 5px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-dark);
}
.menu-nav button {
  flex: 0 0 auto;
  min-width: 108px;
  margin-bottom: -1px;
  padding: .72rem .9rem .65rem;
  border: 1px solid var(--line-dark);
  border-bottom-color: var(--line-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--muted);
  background: rgba(184, 173, 153, .34);
  cursor: pointer;
  font-size: .78rem;
  font-family: var(--font-typewriter-mono);
  font-weight: 700;
  letter-spacing: .025em;
  text-shadow: .35px 0 currentColor;
  transition: color .28s ease, background-color .28s ease, border-color .28s ease, padding .32s cubic-bezier(.22, 1, .36, 1), transform .32s cubic-bezier(.22, 1, .36, 1);
}
.menu-nav button:hover { color: var(--ink); background: rgba(209, 198, 178, .56); transform: translateY(-2px); }
.menu-nav button[aria-selected="true"] {
  padding-top: .92rem;
  border-bottom-color: var(--sheet-solid);
  color: var(--ink);
  background: var(--sheet-solid);
  transform: translateY(0);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(158, 144, 121, .24);
  margin-top: 1.7rem;
}
.menu-card { border: 0; border-radius: 0; background: var(--paper-deep); overflow: hidden; position: relative; }
.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background: radial-gradient(circle, #211f1a 0 .7px, transparent .85px);
  background-size: 4px 4px;
  pointer-events: none;
  transition: opacity .45s ease;
}
.menu-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.58) contrast(1.08) sepia(.06);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
}
.menu-card:hover img { transform: scale(1.025); filter: saturate(.72) contrast(1.06) sepia(.03); }
.menu-card:hover::after { opacity: .06; }
.menu-card:first-child img { object-position: 50% 62%; }
.menu-category { min-height: 490px; padding-top: 2.4rem; }
.category-heading {
  padding-bottom: .85rem;
  border-bottom: 3px double var(--line-dark);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.category-heading .kicker { margin-bottom: .18rem; }
.category-heading h3 { margin: 0; font-size: clamp(1.7rem, 3.8vw, 2.9rem); letter-spacing: -.04em; }
.category-heading > span { color: var(--muted); font-family: "Courier New", monospace; font-size: .72rem; font-weight: 900; }
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.menu-item {
  min-height: 126px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  align-items: end;
  gap: .55rem .8rem;
  transition: background-color .3s ease, border-color .3s ease;
}
.menu-item:hover { background: rgba(205, 194, 175, .18); border-bottom-color: var(--line-dark); }
.menu-item > div:first-child { min-width: 0; align-self: center; }
.menu-item h4 { margin: 0; font-size: .96rem; line-height: 1.42; letter-spacing: .015em; }
.menu-item p { margin: .25rem 0 0; color: var(--muted); font-family: "Courier New", monospace; font-size: .68rem; line-height: 1.3; }
.menu-item > strong { align-self: center; font-family: "Courier New", monospace; font-size: .86rem; white-space: nowrap; }
.menu-item.is-bestseller { position: relative; }
.menu-item.is-bestseller::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--stamp);
  opacity: .72;
}
.best-badge {
  display: inline-block;
  margin-bottom: .28rem;
  padding: .12rem .35rem;
  border: 1px solid var(--stamp);
  border-radius: var(--radius);
  color: var(--stamp);
  font-family: "Courier New", monospace;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
.add-button {
  grid-column: 2;
  min-width: 66px;
  padding: .48rem .62rem;
  border: 1px solid var(--wood);
  border-radius: var(--radius);
  color: var(--wood-dark);
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  font-family: var(--font-typewriter-mono);
  font-weight: 700;
  letter-spacing: .035em;
  transition: color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease;
}
.add-button:hover, .add-button.is-added { color: var(--sheet-solid); background: var(--wood); transform: translateY(-2px); box-shadow: 2px 3px 0 rgba(62, 51, 39, .14); }
.variant-actions { display: flex; gap: 5px; }
.price-choice {
  position: relative;
  min-width: 70px;
  padding: .5rem .62rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto auto;
  gap: .35rem;
  align-items: center;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}
.price-choice[data-quantity]::after {
  content: "×" attr(data-quantity);
  position: absolute;
  right: -5px;
  top: -8px;
  min-width: 19px;
  height: 19px;
  padding: 0 3px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  color: var(--sheet-solid);
  background: var(--wood-dark);
  font-family: var(--font-typewriter-mono);
  font-size: .58rem;
  line-height: 1;
}
.price-choice:hover { border-color: var(--wood); transform: translateY(-2px); }
.price-choice span { color: var(--muted); font-size: .68rem; }
.price-choice strong { font-family: "Courier New", monospace; font-size: .78rem; }
.price-choice.is-added { color: var(--sheet-solid); border-color: var(--wood); background: var(--wood); }
.price-choice.is-added span { color: #ddd1bf; }
.toppings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 1rem; }
.topping-choice {
  position: relative;
  min-height: 76px;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  text-align: left;
  background: rgba(201, 191, 173, .32);
  cursor: pointer;
  transition: color .28s ease, background-color .28s ease, border-color .28s ease, transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.topping-choice[data-quantity]::after {
  content: "×" attr(data-quantity);
  position: absolute;
  right: 5px;
  top: 5px;
  min-width: 19px;
  height: 19px;
  padding: 0 3px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  color: var(--sheet-solid);
  background: var(--wood-dark);
  font-family: var(--font-typewriter-mono);
  font-size: .58rem;
  line-height: 1;
}
.topping-choice:hover { border-color: var(--wood); transform: translateY(-3px); box-shadow: 3px 4px 0 rgba(62, 51, 39, .12); }
.topping-choice span { min-width: 0; display: grid; }
.topping-choice strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .82rem; }
.topping-choice small { color: var(--muted); font-family: "Courier New", monospace; font-size: .62rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topping-choice b { color: var(--wood-dark); font-family: "Courier New", monospace; font-size: .74rem; white-space: nowrap; }
.topping-choice.is-added { color: var(--sheet-solid); border-color: var(--wood); background: var(--wood); }
.topping-choice.is-added small, .topping-choice.is-added b { color: #ded3c2; }
.cart-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  width: min(680px, calc(100% - 26px));
  padding: 9px 9px 9px 16px;
  border: 1px solid var(--sheet-solid);
  border-radius: var(--radius);
  color: var(--sheet-solid);
  background: rgba(39, 35, 30, .96);
  box-shadow: 5px 6px 0 rgba(56, 48, 39, .24);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cart-bar:not([hidden]) { animation: cart-rise .38s cubic-bezier(.22, 1, .36, 1) both; }
.cart-overview {
  min-width: min(330px, 58vw);
  padding: .62rem .72rem;
  border: 1px solid #8f8679;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  color: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, .035), rgba(255, 255, 255, .035)),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(230, 220, 204, .025) 4px 5px);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(33, 30, 26, .42);
  transition: border-color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}
.cart-overview:hover { border-color: #d2c5b2; transform: translateY(-1px); }
.cart-overview-copy { min-width: 0; display: grid; grid-template-columns: auto 1fr; column-gap: .62rem; align-items: baseline; }
.cart-overview-label {
  grid-column: 1 / -1;
  margin-bottom: .12rem;
  color: #a99f91;
  font-family: var(--font-typewriter-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cart-overview-copy > strong {
  font-family: var(--font-typewriter-mono);
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.cart-overview-copy > span { color: #bcb1a0; font-size: .7rem; }
.cart-overview-copy > span[data-cart-mode] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-disclosure {
  flex: 0 0 auto;
  padding: .42rem .52rem;
  border: 1px solid #aa9f90;
  color: #e0d5c5;
  background: rgba(232, 226, 213, .06);
  font-family: var(--font-typewriter-mono);
  font-size: .63rem;
  letter-spacing: .035em;
}
.cart-submit {
  padding: .72rem .9rem;
  border: 1px solid #ddd1bf;
  border-radius: var(--radius);
  color: var(--ink);
  background: #c9b99e;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  transition: opacity .25s ease, color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}
.cart-submit:not(:disabled):hover { color: var(--sheet-solid); background: var(--wood); transform: translateY(-2px); }
.cart-submit:disabled { opacity: .42; cursor: not-allowed; }
.cart-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  max-height: min(440px, calc(100dvh - 150px));
  overflow: auto;
  padding: .8rem;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background-color: var(--sheet-solid);
  background-image:
    linear-gradient(rgba(239, 233, 220, .12), rgba(239, 233, 220, .12)),
    url("assets/zine-paper-texture-v1.webp");
  background-size: auto, 720px auto;
  box-shadow: 6px 7px 0 rgba(45, 41, 36, .22);
}
.cart-panel:not([hidden]) { animation: cart-panel-in .32s cubic-bezier(.22, 1, .36, 1) both; }
.cart-panel-heading {
  padding-bottom: .65rem;
  border-bottom: 2px double var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cart-panel-heading > div { display: grid; }
.cart-panel-heading span { color: var(--muted); font-size: .66rem; }
.cart-close {
  padding: .42rem .55rem;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
}
.cart-items { display: grid; }
.cart-item-row {
  min-height: 68px;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cart-item-copy { min-width: 0; display: grid; }
.cart-item-copy strong { font-size: .78rem; line-height: 1.35; }
.cart-item-copy span { color: var(--muted); font-family: var(--font-typewriter-mono); font-size: .66rem; }
.cart-quantity {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  text-align: center;
}
.cart-quantity button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: rgba(232, 226, 213, .46);
  cursor: pointer;
  font-family: var(--font-typewriter-mono);
  font-size: 1rem;
}
.cart-quantity button:hover { color: var(--sheet-solid); background: var(--wood-dark); }
.cart-quantity strong { font-family: var(--font-typewriter-mono); font-size: .76rem; }

.flow-section { background-color: rgba(202, 191, 171, .92); }
.flow-steps { margin-top: 2rem; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line-dark); }
.flow-steps article { min-height: 190px; padding: 1.2rem; border-right: 1px solid var(--line-dark); }
.flow-steps article:last-child { border-right: 0; }
.flow-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Courier New", monospace;
  font-weight: 900;
}
.flow-steps h3 { margin: .9rem 0 .3rem; font-size: 1.08rem; }
.flow-steps p { margin: 0; color: var(--muted); font-size: .84rem; }
.visit-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(2rem, 5vw, 5rem); }
.visit-copy p { color: var(--muted); }
.visit-links { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.3rem; }
.visit-links a { padding: .62rem .8rem; border: 1px solid var(--line-dark); border-radius: var(--radius); text-decoration: none; font-size: .78rem; font-weight: 900; transition: color .25s ease, background-color .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1); }
.visit-links a:hover { color: var(--sheet-solid); background: var(--wood-dark); transform: translateY(-2px); }
.faq h2 { margin-bottom: .8rem; }
.faq details { border-top: 1px solid var(--line-dark); padding: .85rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq summary { position: relative; padding-right: 2rem; cursor: pointer; font-weight: 850; transition: color .25s ease; }
.faq summary::after { content: "＋"; position: absolute; right: .15rem; top: -.08rem; font-family: "Courier New", monospace; font-size: 1.2rem; transition: transform .38s cubic-bezier(.22, 1, .36, 1); }
.faq details[open] summary { color: var(--wood-dark); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-size: .84rem; }
.faq details[open] p { animation: faq-in .32s cubic-bezier(.22, 1, .36, 1) both; }
footer { margin-bottom: 20px; padding: 1.1rem 0; display: flex; justify-content: space-between; gap: 2rem; color: #514b42; font-family: "Courier New", monospace; font-size: .68rem; }
footer p { max-width: 60ch; margin: 0; }
.toast { position: fixed; right: 16px; bottom: 82px; z-index: 40; padding: .72rem .85rem; border: 1px solid var(--sheet-solid); border-radius: var(--radius); color: var(--sheet-solid); background: var(--wood-dark); box-shadow: var(--shadow); font-size: .78rem; }
.toast:not([hidden]) { animation: toast-in .32s cubic-bezier(.22, 1, .36, 1) both; }
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .68s cubic-bezier(.22, 1, .36, 1), transform .68s cubic-bezier(.22, 1, .36, 1); }

@keyframes cart-rise {
  from { opacity: 0; transform: translate(-50%, 18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cart-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.staff-body { min-height: 100dvh; color: #e8e0d3; background: #26231f; }
.staff-body::before { opacity: .12; }
.staff-header { border-color: #6a6256; background: rgba(40, 36, 31, .92); box-shadow: 4px 5px 0 rgba(0, 0, 0, .22); }
.wordmark-light .mark { color: #27231e; background: #d1c4b0; box-shadow: inset 0 0 0 2px #27231e; }
.wordmark-light small { color: #aaa091; }
.staff-clock { display: grid; text-align: right; font-family: "Courier New", monospace; font-weight: 900; }
.staff-clock small { color: #aaa091; font-size: .64rem; }
.staff-main { width: min(1320px, calc(100% - 30px)); margin: 32px auto 0; padding-bottom: 3rem; }
.staff-intro { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.staff-intro .kicker, .panel-heading .kicker { color: #b8ad9d; }
.staff-intro h1 { max-width: none; margin: 0; font-size: clamp(2.3rem, 4.8vw, 4.8rem); letter-spacing: -.055em; }
.staff-actions { display: flex; gap: .45rem; flex-wrap: wrap; }
.staff-secondary { color: #e8e0d3; border-color: #71695e; }
.staff-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 1.8rem 0 10px; }
.staff-summary div { padding: 1rem; border: 1px solid #625a50; border-radius: var(--radius); background: #302c27; display: grid; }
.staff-summary strong { font-family: "Courier New", monospace; font-size: 2.35rem; line-height: 1; }
.staff-summary span { margin-top: .35rem; color: #aaa093; font-size: .78rem; }
.staff-layout { display: grid; grid-template-columns: 1fr 1fr 1.08fr; gap: 8px; }
.staff-panel { min-width: 0; padding: .9rem; border: 1px solid #625a50; border-radius: var(--radius); background: #302c27; }
.panel-held { background: #352f27; }
.panel-ready { border-color: #7a7563; background: #2d3129; }
.panel-heading { margin-bottom: .8rem; display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.panel-heading .kicker { margin-bottom: .15rem; }
.panel-heading h2 { margin: 0; font-size: 1.35rem; }
.panel-heading > span { color: #aaa093; font-family: "Courier New", monospace; font-size: .64rem; }
.staff-list { display: grid; gap: 6px; }
.staff-row { padding: .75rem; border: 1px solid #4f4941; border-radius: var(--radius); background: #39342e; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.staff-row > div { min-width: 0; display: grid; }
.staff-row strong { font-family: "Courier New", monospace; font-size: 1.05rem; }
.staff-row div span { color: #b2a89b; font-size: .72rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.staff-row button { flex: 0 0 auto; padding: .52rem .62rem; border: 1px solid #c0b29e; border-radius: var(--radius); color: #2e2923; background: #c4b49c; cursor: pointer; font-size: .7rem; font-weight: 900; }
.staff-row button:disabled { color: #a49a8c; border-color: #5e574e; background: #4a443d; cursor: default; }
.staff-status { flex: 0 0 auto; padding: .34rem .48rem; border: 1px solid; border-radius: var(--radius); font-family: "Courier New", monospace; font-size: .62rem; font-weight: 900; }
.staff-status.is-held { color: #d5bc92; border-color: #8f7754; }
.staff-status.is-ready { color: #c9d1b7; border-color: #788369; }
.empty-state { padding: .85rem; border: 1px dashed #625a50; border-radius: var(--radius); color: #aaa093; text-align: center; font-size: .78rem; }
.staff-boundary { margin-top: 1rem; color: #8d8579; font-family: "Courier New", monospace; font-size: .66rem; }

@media (max-width: 840px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: calc(100dvh - 116px); }
  .hero-media { min-height: 520px; }
  .status-card, .visit-section { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .menu-card:first-child { grid-column: span 2; }
  .menu-card img { height: 215px; }
  .menu-card:first-child img { height: min(110vw, 500px); object-fit: contain; background: var(--wood-dark); }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .staff-intro { align-items: start; flex-direction: column; }
  .staff-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-header, .staff-header { width: calc(100% - 18px); margin-top: 8px; top: 6px; }
  .wordmark { font-size: .78rem; }
  .mark { width: 38px; height: 38px; }
  .staff-link { display: none; }
  .hero, .status-shell, .menu-section, .flow-section, .visit-section, footer, .staff-main { width: calc(100% - 18px); }
  .hero { margin-top: 9px; }
  .hero-copy { min-height: calc(100dvh - 92px); padding: 1.35rem; }
  .hero-copy::after { display: none; }
  h1 { font-size: clamp(2.7rem, 13.5vw, 4.35rem); }
  .choice-grid { grid-template-columns: 1fr; margin-top: 1.35rem; }
  .choice { min-height: 88px; }
  .hero-media { min-height: 430px; }
  .menu-section, .flow-section, .visit-section { padding: 1.15rem; }
  .status-card { gap: 1rem; }
  .menu-nav { margin-inline: -2px; }
  .menu-nav button { min-width: 104px; }
  .featured-grid { margin-inline: -2px; }
  .menu-category { min-height: 560px; padding-top: 1.6rem; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-item { min-height: 112px; }
  .menu-item-variant { grid-template-columns: 1fr; }
  .variant-actions { grid-column: 1 / -1; width: 100%; }
  .price-choice { flex: 1; justify-content: center; }
  .toppings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topping-choice { min-width: 0; padding: .65rem; }
  .cart-bar { align-items: stretch; }
  .cart-overview { flex: 1; }
  .cart-disclosure { display: none; }
  .cart-submit { max-width: 48%; white-space: normal; }
  .cart-panel { max-height: calc(100dvh - 132px); }
  footer { flex-direction: column; gap: .55rem; }
  .staff-summary { grid-template-columns: repeat(3, 1fr); }
  .staff-summary div { padding: .68rem; }
  .staff-summary strong { font-size: 1.85rem; }
  .staff-summary span { font-size: .62rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
