.food-page {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.food-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: end;
  padding-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.food-hero .kicker,
.eyebrow {
  margin: 0 0 .55rem;
  color: var(--clay);
  font-weight: 750;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .82rem;
}

.food-hero h1 {
  margin-top: 0;
}

.food-times {
  display: grid;
  gap: .8rem;
}

.food-times div,
.food-card,
.dish-grid article,
.food-cta {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
  border-radius: var(--radius2);
}

.food-times div {
  padding: 1rem 1.1rem;
}

.food-times span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .25rem;
}

.food-times strong {
  color: var(--pine);
  font-size: 1.04rem;
}

.food-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.food-copy {
  color: rgba(31,36,32,.82);
  line-height: 1.72;
}

.food-copy h2,
.half-board h2,
.food-cta h2 {
  font-family: "Fraunces", serif;
  color: var(--pine);
  letter-spacing: -0.02em;
}

.food-copy p {
  margin: 0 0 1rem;
}

.food-copy.wide {
  max-width: 82ch;
  margin-bottom: 1.2rem;
}

.food-card {
  padding: 1.25rem;
  position: sticky;
  top: 96px;
}

.breakfast-photo {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(246,242,234,.85);
}

.breakfast-photo-main {
  margin: .85rem 0 1.25rem;
}

.breakfast-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.food-card h3,
.dish-grid h3 {
  font-family: "Fraunces", serif;
  color: var(--pine);
  margin-top: 0;
}

.food-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .55rem;
  color: rgba(31,36,32,.8);
}

.half-board {
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dish-grid article {
  padding: 1rem;
}

.dish-grid p {
  margin-bottom: 0;
  color: rgba(31,36,32,.78);
  line-height: 1.55;
}

.food-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.food-cta h2 {
  margin: 0 0 .35rem;
}

.food-cta p {
  margin: 0;
  color: rgba(31,36,32,.76);
}

.food-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.food-actions a {
  justify-content: center;
}

@media (max-width: 980px) {
  .food-hero,
  .food-split {
    grid-template-columns: 1fr;
  }

  .food-card {
    position: static;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .food-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .food-actions {
    justify-content: stretch;
  }

  .food-actions a {
    flex: 1 1 100%;
  }
}
