/* ── Food page ──────────────────────────────────────────────── */
.food-header {
  padding-top: calc(var(--section-gap) + 80px);
  padding-bottom: var(--section-gap);
  text-align: center;
}
.food-header h1 {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  font-style: italic;
  line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.food-header h1 em { color: var(--terracotta); font-style: normal; }
.food-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
}

.food-header--hero {
  background-size: cover;
  background-position: center;
  position: relative;
}
.food-header--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}
.food-header--hero .container { position: relative; }
.food-header--hero h1,
.food-header--hero p { color: #fff; }
.food-header--hero .section-eyebrow__rule { background: rgba(255,255,255,.4); }
.food-header--hero .section-eyebrow__num,
.food-header--hero .section-eyebrow__label { color: rgba(255,255,255,.8); }

.food-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.food-carousel::-webkit-scrollbar { display: none; }
.food-carousel__item {
  flex: 0 0 260px;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  background: #f0ece5;
}
.food-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}
.food-carousel__item img:hover { transform: scale(1.03); }

.food-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.food-table {
  width: 100%;
  border-collapse: collapse;
}
.food-table th {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  padding: 12px 20px;
  border-bottom: 2px solid var(--bone-2);
}
.food-table tbody tr {
  border-bottom: 1px solid var(--bone-2);
  cursor: pointer;
  transition: background 150ms;
}
.food-table tbody tr:hover { background: var(--bone); }
.food-table td { padding: 20px; vertical-align: top; }
.food-row__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}
.food-row__note {
  font-family: var(--hand);
  font-size: 18px;
  color: var(--terracotta);
}
.food-row__pick {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.food-row__expanded {
  display: none;
  padding: 0 20px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  border-bottom: 1px solid var(--bone-2);
}
.food-row__expanded.is-open { display: table-row; }
.food-row__expanded td { padding: 16px 20px 28px; }
.food-row__best {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 768px) {
  .food-table th:nth-child(n+3) { display: none; }
  .food-table td:nth-child(n+3) { display: none; }
}
