/* ===== Dishes ===== */
#dishes {
  padding: 100px 0;
  background: #f7f1e7;
}

.dishes-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.dishes-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  color: #241d17;
  text-align: center;
}

.dishes-subtitle {
  text-align: center;
  font-size: 15.5px;
  color: #6b5d4a;
  max-width: 560px;
  margin: 14px auto 56px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dish-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 18, 15, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(23, 18, 15, 0.14);
}

.dish-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-img {
  transform: scale(1.06);
}

.dish-body {
  padding: 24px 26px 26px;
}

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: #241d17;
  margin-bottom: 8px;
}

.dish-desc {
  font-size: 14px;
  color: #6b5d4a;
  margin-bottom: 20px;
  min-height: 40px;
}

.dish-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 18, 15, 0.08);
}

.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: #c9a227;
}

.dish-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #241d17;
  background: transparent;
  border: 1px solid #17120f;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.dish-btn:hover {
  background: #17120f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
  .dishes-inner { max-width: 1320px; padding: 0 64px; }
}

@media (max-width: 1024px) {
  #dishes { padding: 80px 0; }
  .dishes-inner { padding: 0 32px; }
  .dishes-title { font-size: 36px; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 768px) {
  .dishes-subtitle { font-size: 14.5px; margin-bottom: 40px; }
  .dish-img { height: 190px; }
}

@media (max-width: 480px) {
  #dishes { padding: 64px 0; }
  .dishes-inner { padding: 0 16px; }
  .dishes-title { font-size: 30px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .dish-desc { min-height: 0; }
}
