
.cc-chef {
  background-color: #FFFFFF;
  color: #2C2828;
  font-family: 'Jost', sans-serif;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cc-chef__container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cc-chef__images {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cc-chef__img {
  width: calc(50% - 6px);
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(100%);
}
.cc-chef__img--right { transform: translateY(18%); }
.cc-chef__content { display: flex; flex-direction: column; }
.cc-chef__label {
  font-weight: 500;
  text-transform: uppercase;
  color: #A8957A;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}
.cc-chef__maintitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #2C2828;
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.cc-chef__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: #2C2828;
  margin: 0 0 40px 0;
}
.cc-chef__divider {
  width: 100%;
  height: 1px;
  background-color: #A8957A;
  opacity: 0.3;
  margin: 0 0 40px 0;
}
.cc-chef-block { margin-bottom: 40px; }
.cc-chef-block__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2C2828;
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.cc-chef-block__title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: #A8957A;
  display: block;
  margin-bottom: 16px;
}
.cc-chef-block__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #2C2828;
  margin: 0;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .cc-chef__container { grid-template-columns: 1fr; gap: 48px; }
  .cc-chef__maintitle { font-size: 2.5rem; }
}
