.chef-profile-modern {
  width: 100%;
  background: linear-gradient(135deg, #fffbe6 70%, #f8f5e1 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #b8860b22;
  margin: 2rem auto;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.chef-profile-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.chef-profile-imgbox {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.chef-profile-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #b8860b;
  box-shadow: 0 2px 16px #b8860b33;
  background: #fff;
}
.chef-name-title {
  text-align: center;
}
.chef-name {
  font-size: 1.5rem;
  color: #b8860b;
  font-weight: 700;
  margin: 0.3rem 0 0 0;
}
.chef-title {
  font-size: 1.05rem;
  color: #7c5901;
  font-weight: 500;
}
.chef-profile-content {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.chef-profile-title {
  font-size: 2rem;
  color: #7c5901;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.chef-profile-desc {
  font-size: 1.08rem;
  color: #18130a;
  font-weight: 500;
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.chef-section-heading {
  font-size: 1.15rem;
  color: #d4a815;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
}
.chef-signature-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
.chef-signature-item {
  background: #1d1d1c;
  border-radius: 14px;
  box-shadow: 0 2px 8px #b8860b22;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.chef-signature-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.chef-signature-item span {
  color:#f0f0f0;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.chef-signature-item:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 6px 24px #b8860b33;
}
.chef-achievements-list {
  margin: 0 0 0 1.2rem;
  padding: 0;
  color: #18130a;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: disc inside;
}
.chef-philosophy {
  background: #fffbe6;
  border-left: 4px solid #000000;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  color: #7c5901;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .chef-profile-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .chef-profile-imgbox {
    flex: none;
    width: 220px;
    height: 220px;
  }
  .chef-profile-img {
    width: 220px;
    height: 220px;
  }
  .chef-signature-gallery {
    gap: 0.7rem;
  }
  .chef-signature-item {
    width: 120px;
    padding: 0.5rem;
  }
  .chef-signature-item img {
    height: 80px;
  }
  .chef-profile-content {
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  .chef-profile-modern {
    padding: 1.2rem 0.3rem 1rem 0.3rem;
    border-radius: 10px;
  }
  .chef-profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }
  .chef-profile-title {
    font-size: 1.3rem;
  }
  .chef-section-heading {
    font-size: 1rem;
  }
  .chef-signature-item {
    width: 90px;
    padding: 0.3rem;
  }
  .chef-signature-item img {
    height: 50px;
    border-radius: 6px;
  }
  .chef-philosophy {
    font-size: 0.98rem;
    padding: 0.7rem 0.5rem;
  }
}