.hero-chef {
  position: relative;
  color: #fff;
  display: flex;
  align-items: stretch;
}

.hero-chef-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-chef-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-chef-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
}

.hero-chef-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-24);
  padding-bottom: var(--space-20);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-6);
}

.hero-chef-title {
  max-width: 32rem;
}

.hero-chef-lead-wrapper {
  max-width: 32rem;
}

.hero-chef-lead {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.88);
}

.hero-chef-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section-chef-intro .chef-intro-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.chef-intro-meta {
  align-self: stretch;
}

.chef-intro-list,
.chef-experience-list,
.chef-seasonal-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.chef-intro-list li::before,
.chef-experience-list li::before,
.chef-seasonal-list li::before {
  content: "\2022";
  color: var(--color-primary);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.chef-intro-link,
.chef-experience-link,
.chef-inspiration-link,
.chef-seasonal-link {
  font-size: var(--font-size-sm);
}

.section-chef-philosophy .chef-philosophy-grid {
  margin-top: var(--space-10);
}

.section-chef-experience .chef-experience-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.chef-experience-card {
  align-self: stretch;
}

.section-chef-inspiration .chef-inspiration-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.chef-inspiration-highlight {
  align-self: stretch;
}

.chef-quote {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-4);
}

.chef-quote-author {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.7);
  margin-bottom: var(--space-4);
}

.section-chef-team .chef-team-grid {
  align-items: center;
  gap: var(--space-12);
}

.chef-team-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.section-chef-signature .chef-signature-grid {
  margin-top: var(--space-10);
}

.chef-signature-note {
  font-size: var(--font-size-sm);
  color: rgba(42, 42, 42, 0.75);
}

.chef-signature-cta {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.section-chef-table .chef-table-grid {
  align-items: center;
  gap: var(--space-12);
}

.chef-table-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.section-chef-seasonal .chef-seasonal-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.chef-seasonal-card {
  align-self: stretch;
}

.section-chef-message .chef-message-card {
  background: var(--color-bg-card);
}

.section-chef-message .chef-message-grid {
  align-items: flex-start;
  gap: var(--space-12);
}

.chef-message-signature {
  margin-top: var(--space-4);
  font-weight: 600;
}

.chef-message-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chef-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.chef-message-note {
  font-size: var(--font-size-sm);
  color: rgba(42, 42, 42, 0.74);
}

@media (max-width: 992px) {
  .hero-chef-content {
    padding-top: var(--space-20);
    padding-bottom: var(--space-16);
  }

  .hero-chef-title,
  .hero-chef-lead-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-chef-content {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

  .hero-chef-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-chef-message .chef-message-grid,
  .section-chef-team .chef-team-grid,
  .section-chef-experience .chef-experience-grid,
  .section-chef-inspiration .chef-inspiration-grid,
  .section-chef-seasonal .chef-seasonal-grid,
  .section-chef-intro .chef-intro-grid,
  .section-chef-table .chef-table-grid {
    gap: var(--space-8);
  }
}
