@font-face {
  font-family: Display;
  src: url("assets/fonts/display.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Display;
  src: url("assets/fonts/display-italic.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Sans;
  src: url("assets/fonts/body.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: Sans;
  src: url("assets/fonts/body-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600 700;
}
:root {
  --paper: #efe7da;
  --ink: #382e25;
  --muted: #6c6053;
  --line: #cfc3b2;
  --hot: #b93628;
  --sour: #486029;
  --sweet: #98465b;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Sans, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  transition:
    background-color 0.45s,
    color 0.45s;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}
button[hidden],
[hidden] {
  display: none !important;
}
button:disabled {
  cursor: default;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
.page-shell {
  width: min(1360px, calc(100% - 112px));
  margin: auto;
}
.site-header {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: Display, Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 1;
  background: none;
  border: 0;
  color: inherit;
  padding: 0 4px 12px 0;
}
.brand-period {
  color: var(--hot);
}
.header-note,
.header-right {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.header-note {
  margin: 0 0 0 68px;
}
.header-right {
  min-width: 170px;
  text-align: right;
}
.neutral-note {
  letter-spacing: 0.035em;
  font-size: 0.875rem;
}
.home-button {
  padding: 10px 0 10px 10px;
  background: none;
  border: 0;
  color: inherit;
  min-height: 44px;
  font-size: 0.875rem;
}
.home-button > span {
  font-size: 23px;
  vertical-align: -2px;
  margin-right: 7px;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 52px 0 29px;
  min-height: 530px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}
.small-star {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
h1 {
  font-family: Display, Georgia, serif;
  font-size: clamp(4.5rem, 7.8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
}
h1 > span,
h1 > em {
  display: block;
}
h1 > em {
  font-weight: 400;
  white-space: nowrap;
}
.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
  margin: 30px 0 0;
  color: var(--muted);
}
.hero-art {
  position: relative;
  margin: 0;
  padding: 0 18px 0 28px;
  min-width: 0;
}
.art-frame {
  aspect-ratio: 1.13;
  border-radius: 48% 48% 44% 44%;
  overflow: hidden;
  background: #e9dfce;
  transform: rotate(-6deg);
  isolation: isolate;
}
.food-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(6deg) scale(1.12);
  mix-blend-mode: multiply;
}
.art-stamp {
  position: absolute;
  right: 4px;
  top: 5%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--paper);
  transform: rotate(12deg);
  box-shadow: 0 0 0 6px var(--paper);
  color: var(--ink);
}
.art-stamp span {
  font-size: 0.625rem;
  letter-spacing: 0.11em;
}
.art-stamp b {
  font:
    45px/0.98 Display,
    Georgia,
    serif;
  margin: 4px 0;
}
figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  padding: 24px 20px 0 44px;
  white-space: nowrap;
}
.caption-line {
  height: 1px;
  width: 32px;
  background: currentColor;
}
.mood-section {
  padding: 23px 0 32px;
}
.mood-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}
.mood-heading-row h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}
.mood-heading-row p {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--muted);
}
.mood-heading-row p span {
  font-size: 22px;
  margin-left: 12px;
}
.mood-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mood-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
  min-height: 118px;
  text-align: left;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  transition:
    background-color 0.25s,
    color 0.25s,
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  overflow: hidden;
}
.mood-hot {
  color: var(--hot);
  --button-fill: #b93628;
  --button-ink: #fff5e7;
}
.mood-sour {
  color: var(--sour);
  --button-fill: #d3db76;
  --button-ink: #35421e;
}
.mood-sweet {
  color: var(--sweet);
  --button-fill: #e9b1bc;
  --button-ink: #612439;
}
.mood-number {
  align-self: flex-start;
  font-size: 0.6875rem;
  margin-top: 8px;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}
.mood-label {
  font-family: Display, Georgia, serif;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.mood-subtitle {
  display: block;
  font-family: Sans, Arial, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 8px;
}
.mood-arrow {
  font-size: 31px;
  line-height: 1;
  margin-left: auto;
  align-self: center;
  transition: transform 0.3s;
}
.mood-button[aria-pressed="true"] {
  background: var(--button-fill);
  color: var(--button-ink);
  border-color: var(--button-fill);
  box-shadow: inset 0 -4px 0 currentColor;
}
.mood-button[aria-pressed="true"] .mood-arrow {
  transform: rotate(45deg);
}
.mood-button:active {
  transform: scale(0.975);
}
.selection-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
  margin: 19px 0 0;
  min-height: 20px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.site-footer p {
  margin: 0;
}
.site-footer p:last-child {
  letter-spacing: 0;
  font-size: 0.6875rem;
}
.site-footer span {
  margin: 0 9px;
}
.world-wipe {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  background: var(--paper);
}
#wipe-label {
  font:
    italic clamp(5rem, 18vw, 18rem) / 1 Display,
    Georgia,
    serif;
  letter-spacing: -0.06em;
}
#wipe-label {
  position: relative;
  z-index: 1;
}
#wipe-emojis {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wipe-emoji {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font:
    clamp(2.8rem, 7vw, 7rem) / 1 "Apple Color Emoji",
    "Segoe UI Emoji",
    sans-serif;
  transform: rotate(var(--turn));
  user-select: none;
}
.wipe-emoji:nth-child(1) {
  --x: 14%;
  --y: 20%;
  --turn: -22deg;
}
.wipe-emoji:nth-child(2) {
  --x: 72%;
  --y: 16%;
  --turn: 19deg;
}
.wipe-emoji:nth-child(3) {
  --x: 5%;
  --y: 60%;
  --turn: 12deg;
}
.wipe-emoji:nth-child(4) {
  --x: 83%;
  --y: 64%;
  --turn: -18deg;
}
.wipe-emoji:nth-child(5) {
  --x: 32%;
  --y: 77%;
  --turn: 30deg;
}
.wipe-emoji:nth-child(6) {
  --x: 54%;
  --y: 8%;
  --turn: -12deg;
}

/* Flavor menus: the original neutral landing stays menu-free. */
body:not([data-world="neutral"]) .mood-section {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 14px;
}
body:not([data-world="neutral"]) .mood-section::before {
  content: "";
  position: absolute;
  inset: 0 -12px;
  background: var(--paper);
  z-index: -1;
}
body:not([data-world="neutral"]) .mood-heading-row {
  margin-bottom: 12px;
}
body:not([data-world="neutral"]) .mood-button {
  min-height: 88px;
  padding-block: 14px;
}
body:not([data-world="neutral"]) .mood-label {
  font-size: 2rem;
}
body:not([data-world="neutral"]) .mood-subtitle {
  margin-top: 4px;
}
body:not([data-world="neutral"]) .selection-note {
  display: none;
}
.menu-section {
  padding: 56px 0 40px;
}
.menu-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
.menu-intro > div {
  min-width: 0;
}
.menu-intro .eyebrow {
  margin-bottom: 15px;
  font-size: 0.75rem;
}
.menu-intro h2 {
  font:
    400 clamp(2.6rem, 4.7vw, 4.8rem) / 1.05 Display,
    Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}
.menu-intro > p {
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 4px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.dish-card {
  min-width: 0;
}
.dish-photo {
  margin: 0 0 25px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 5px;
  background: #e8ddcb;
}
.dish-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.dish-category {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin: 0 0 11px;
  color: var(--muted);
}
.dish-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.dish-title-row h3 {
  font:
    400 clamp(1.7rem, 2.2vw, 2.35rem) / 1.1 Display,
    Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 0;
  overflow-wrap: anywhere;
}
.dish-price {
  font-size: 1.0625rem;
  font-weight: 600;
  white-space: nowrap;
}
.dish-description {
  font-size: 1rem;
  line-height: 1.7;
  margin: 17px 0 20px;
  color: var(--muted);
}
.dish-accent {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  margin: 0;
}
.menu-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.menu-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.menu-home {
  background: none;
  border: 0;
  min-height: 44px;
  padding: 10px 0 10px 10px;
  color: inherit;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.menu-home span {
  margin-left: 14px;
  font-size: 22px;
}
#menu-title:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
@media (hover: hover) {
  .dish-card:hover .dish-photo img {
    transform: scale(1.04);
  }
  .menu-home:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
@media (max-width: 1000px) {
  .menu-grid {
    gap: 18px;
  }
  .menu-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .menu-intro > p {
    max-width: 540px;
  }
}
@media (max-width: 760px) {
  body:not([data-world="neutral"]) .mood-section {
    padding-top: 14px;
    padding-bottom: 12px;
  }
  body:not([data-world="neutral"]) .mood-button {
    min-height: 64px;
    padding: 13px;
    justify-content: center;
  }
  body:not([data-world="neutral"]) .mood-number {
    display: none;
  }
  body:not([data-world="neutral"]) .mood-arrow {
    top: 22px;
  }
  body:not([data-world="neutral"]) .mood-label {
    font-size: 1.8rem;
  }
  .menu-section {
    padding-top: 32px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dish-photo {
    margin-bottom: 20px;
  }
  .dish-title-row h3 {
    font-size: 2rem;
  }
  .dish-description {
    margin: 14px 0 18px;
  }
  .menu-intro {
    gap: 16px;
    margin-bottom: 28px;
  }
  .menu-intro h2 {
    font-size: 2.7rem;
  }
  .menu-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
  }
  .menu-home {
    padding-left: 0;
  }
  .wipe-emoji:nth-child(3) {
    --x: 4%;
    --y: 64%;
  }
  .wipe-emoji:nth-child(4) {
    --x: 77%;
    --y: 69%;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 30;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.noscript-note {
  text-align: center;
  padding: 16px;
  font-size: 0.875rem;
}
body[data-world="hot"] {
  --paper: #9e291e;
  --ink: #fff0db;
  --muted: #f5d1ba;
  --line: #bc6250;
  --hot: #fff0db;
  --sour: #e4edac;
  --sweet: #ffd3dc;
}
body[data-world="sour"] {
  --paper: #e6ecc0;
  --ink: #2f4023;
  --muted: #536344;
  --line: #bac79a;
  --hot: #9e3022;
  --sour: #35491f;
  --sweet: #85475e;
}
body[data-world="sweet"] {
  --paper: #f1d7dc;
  --ink: #622b3d;
  --muted: #795262;
  --line: #d3adb8;
  --hot: #a1372d;
  --sour: #4d622f;
  --sweet: #7d2d48;
}
body:not([data-world="neutral"]) .art-frame {
  background: #efe7da;
}
body[data-world="hot"] .art-stamp {
  transform: rotate(-10deg);
}
body[data-world="sour"] .art-stamp {
  transform: rotate(18deg);
}
body[data-world="sweet"] .art-stamp {
  transform: rotate(-8deg);
}
.art-stamp {
  transition:
    transform 0.6s var(--ease),
    background 0.4s;
}
@media (hover: hover) {
  .mood-button:hover {
    background: var(--button-fill);
    color: var(--button-ink);
    border-color: var(--button-fill);
    transform: translateY(-5px);
  }
  .mood-button:hover .mood-arrow {
    transform: translate(3px, -3px);
  }
  .home-button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .wordmark:hover .brand-period {
    opacity: 0.6;
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 65px;
    padding-bottom: 40px;
    min-height: 590px;
  }
}
@media (max-width: 1100px) {
  .page-shell {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 475px;
    padding-top: 45px;
    gap: 8px;
  }
  h1 {
    font-size: clamp(4.3rem, 8vw, 6rem);
  }
  .hero-art {
    padding-left: 10px;
    padding-right: 0;
  }
  .art-stamp {
    width: 88px;
    height: 88px;
    right: -5px;
  }
  .art-stamp b {
    font-size: 36px;
  }
  .art-stamp span {
    font-size: 0.55rem;
  }
  .hero-description {
    max-width: 360px;
  }
  .desktop-break {
    display: none;
  }
  .mood-button {
    gap: 15px;
    padding: 22px 18px;
  }
  .mood-subtitle {
    font-size: 0.75rem;
  }
  .mood-label {
    font-size: 2.3rem;
  }
  .header-note {
    margin-left: 0;
  }
  figcaption {
    padding-left: 15px;
  }
}
@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 91px;
  }
  .wordmark {
    font-size: 51px;
    letter-spacing: -4px;
    padding-bottom: 9px;
  }
  .header-note {
    display: none;
  }
  .header-right {
    min-width: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
    padding: 40px 0 6px;
    min-height: 0;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eyebrow {
    font-size: 0.625rem;
    margin-bottom: 21px;
    gap: 9px;
  }
  .small-star {
    font-size: 21px;
  }
  h1 {
    font-size: clamp(3.6rem, 11.8vw, 6rem);
    letter-spacing: -0.06em;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.7;
    margin: 22px 8px 0;
  }
  .hero-art {
    width: min(340px, 85%);
    margin: 0 auto;
    padding: 0;
  }
  .art-frame {
    aspect-ratio: 1.4;
  }
  .art-stamp {
    width: 77px;
    height: 77px;
    right: -8px;
    top: 1%;
    box-shadow: 0 0 0 4px var(--paper);
  }
  .art-stamp span {
    font-size: 0.5rem;
  }
  .art-stamp b {
    font-size: 29px;
  }
  figcaption {
    justify-content: center;
    padding: 17px 0 0;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    gap: 10px;
  }
  .mood-section {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .mood-heading-row {
    justify-content: center;
    margin-bottom: 17px;
  }
  .mood-heading-row h2 {
    font-size: 1rem;
    text-align: center;
  }
  .mood-heading-row p {
    display: none;
  }
  .mood-buttons {
    gap: 9px;
  }
  .mood-button {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    min-height: 111px;
    padding: 13px 14px;
  }
  .mood-number {
    font-size: 0.625rem;
    margin: 0;
    align-self: flex-start;
  }
  .mood-label {
    font-size: 2rem;
  }
  .mood-subtitle {
    display: none;
  }
  .mood-arrow {
    position: absolute;
    top: 14px;
    right: 12px;
    font-size: 20px;
  }
  .selection-note {
    font-size: 0.6875rem;
    margin-top: 16px;
  }
  .site-footer {
    align-items: flex-start;
    padding: 19px 0;
    gap: 12px;
    font-size: 0.5rem;
  }
  .site-footer p {
    max-width: 50%;
    line-height: 1.8;
  }
  .site-footer p:last-child {
    font-size: 0.5625rem;
    text-align: right;
  }
  .site-footer span {
    margin: 0 3px;
  }
}
@media (max-width: 370px) {
  .page-shell {
    width: calc(100% - 32px);
  }
  .hero {
    padding-top: 32px;
  }
  .hero-description {
    font-size: 0.9375rem;
    margin-inline: 0;
  }
  .neutral-note {
    font-size: 0.75rem;
  }
  .mood-button {
    padding-inline: 11px;
    min-height: 104px;
  }
  .mood-label {
    font-size: 1.8rem;
  }
  .mood-arrow {
    right: 8px;
  }
  .hero-art {
    width: 83%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .world-wipe {
    display: none;
  }
}
