:root {
  --paper: #f4ead8;
  --paper-2: #efe3cc;
  --ink: #1c140f;
  --ink-soft: #5c4a3e;
  --rust: #9b1d14;
  --rust-deep: #6e120c;
  --gold: #b8923a;
  --open: #e7dcc8;
  --filled: #fffaf1;
  --rule: rgba(28, 20, 15, 0.12);
  --shadow: 0 10px 30px rgba(28, 20, 15, 0.08);
  /* Logo 2.af `_Linear2` — Affinity vector (383.57, -1879.29); CSS 0deg is up */
  --lss-grad-angle: 11.54deg;
  --lss-purple: #3b257b;
  --lss-red: #f61729;
  --lss-gold: #e6c715;
  --lss-hero-fill: linear-gradient(
    var(--lss-grad-angle),
    var(--lss-purple) 0%,
    var(--lss-red) 50%,
    var(--lss-gold) 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(155, 29, 20, 0.08), transparent 50%),
    var(--paper);
  font-family: "Be Vietnam Pro", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: var(--rust);
}

a:hover {
  color: var(--rust-deep);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--filled);
  border-bottom: 1px solid var(--rule);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.wordmark img {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}

.wordmark:hover {
  color: var(--rust);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.15rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--rust);
}

.site-nav a[aria-current="page"] {
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--rust);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--ink-soft);
  border-radius: 0.45rem;
  text-decoration: none;
}

.ig:hover {
  color: var(--rust);
}

.ig svg {
  display: block;
  width: 1.28rem;
  height: 1.28rem;
}

.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  border-bottom: none;
}

.home .site-header .wrap {
  justify-content: flex-end;
}

.home .wordmark {
  display: none;
}

.home .site-nav a,
.home .site-header .ig {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.home .site-header .ig {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
  text-shadow: none;
}

.home .site-nav a:hover,
.home .site-nav a[aria-current="page"],
.home .site-header .ig:hover {
  color: #fff;
}

.home .site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 #fff;
}

.hero {
  padding: 2.6rem 0 1.6rem;
  border-bottom: 1px solid var(--rule);
}

.hero--brand {
  padding: 0;
  border-bottom: 1px solid var(--rule);
}

.hero-banner {
  display: grid;
  place-items: center;
  margin: 0;
  height: 27rem;
  background: var(--lss-hero-fill);
}

.hero-wordmark {
  display: block;
  height: 21rem;
  width: auto;
}

.kicker {
  margin: 0 0 0.4rem;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-title {
  color: #bb2222;
}

.tagline {
  margin: 0.8rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.lede {
  margin: 0.25rem 0 0;
  max-width: 40rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
}

.chip {
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.2rem 0 0.2rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.85rem;
}

.muted {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
  padding: 2rem 0 3rem;
}

.grid[data-meal-grid]:not([data-sorted]) {
  visibility: hidden;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  color: inherit;
  background: var(--filled);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

.card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--open);
}

.card-photo img,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-photo:not(:has(img)),
.hero-photo:not(:has(img)) {
  box-shadow: inset 0 0 0 1px var(--rule);
}

.card-body {
  padding: 0.85rem 1rem 1rem;
}

.card-body .gloss {
  margin-top: 0.2rem;
}

.card h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-photo {
  width: 100%;
  margin: 1.1rem 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--open);
}

.card.open {
  background: var(--open);
  box-shadow: none;
}

.card:hover {
  border-color: var(--rust);
}

.n {
  color: var(--rust);
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.card h3 {
  margin: 0.45rem 0 0.15rem;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
}

.gloss {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.status {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status.filled {
  color: var(--rust-deep);
}

.status.seeking {
  color: var(--ink-soft);
}

.category {
  padding: 2rem 0 4rem;
  max-width: 48rem;
}

.dishes {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.dishes > .dish {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.75rem 0.7rem;
  align-items: start;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.dish-n {
  color: var(--rust);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  padding-top: 0.15rem;
}

.dish-body {
  min-width: 0;
}

.dish-title {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.dish-title .gloss {
  font-family: "Be Vietnam Pro", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.kitchens {
  margin: 0.55rem 0 0;
  padding: 0 0 0 1.1rem;
}

.kitchens li {
  margin: 0.2rem 0;
}

.kitchen-name {
  font-weight: 600;
}

.sep {
  color: var(--ink-soft);
}

.seeking {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.crumbs {
  margin: 0 0 0.4rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.crumbs a {
  color: var(--rust);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--rust-deep);
}

.crumbs [aria-current="page"] {
  color: var(--ink-soft);
}

.crumbs-sep {
  color: var(--ink-soft);
}

.dish-head h1 {
  margin-top: 0.25rem;
}

h2.section-label {
  margin: 2rem 0 0.4rem;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dishes + h2.section-label {
  margin-top: 2.2rem;
}

.nav-dishes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
}

.nav-dishes a {
  text-decoration: none;
  max-width: 46%;
}

.nav-dishes span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  padding: 1.4rem 0 2.4rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.is-hidden {
  display: none;
}
