.chef-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  background: radial-gradient(circle at top, rgba(183, 138, 75, 0.25), transparent 55%),
              linear-gradient(135deg, #050505 0%, #111111 40%, #050505 100%);
}

.chef-hero-media {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 0%, rgba(183, 138, 75, 0.3), transparent 55%),
                    radial-gradient(circle at 90% 100%, rgba(183, 15, 46, 0.35), transparent 55%);
  opacity: 0.7;
}

.chef-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.chef-hero-text {
  max-width: 36rem;
}

.chef-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.chef-hero-portrait {
  justify-self: flex-end;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.chef-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.chef-section {
  padding: var(--space-16) 0;
}

.chef-section-alt {
  background: radial-gradient(circle at top, rgba(183, 138, 75, 0.12), transparent 60%),
              linear-gradient(180deg, #050505 0%, #0b0b0b 45%, #050505 100%);
}

.chef-section-header {
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.chef-layout-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-10);
  align-items: flex-start;
}

.chef-highlights .card {
  height: 100%;
}

.chef-badges-list {
  display: grid;
  gap: var(--space-4);
}

.chef-badges-list li p {
  margin-top: var(--space-2);
  margin-bottom: 0;
}

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

.chef-link-subtle {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chef-presentation-image,
.chef-team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.chef-presentation-image img,
.chef-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.chef-signature-card p:last-child {
  margin-bottom: 0;
}

.chef-word-card {
  max-width: 880px;
  margin: 0 auto;
}

.chef-word-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .chef-hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .chef-layout-two-cols {
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .chef-hero {
    min-height: 0;
  }

  .chef-hero-grid {
    grid-template-columns: 1fr;
  }

  .chef-hero-portrait {
    order: -1;
    max-width: 260px;
    justify-self: flex-start;
  }

  .chef-section {
    padding: var(--space-12) 0;
  }

  .chef-layout-two-cols {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chef-hero-portrait img {
    transform: none;
  }
}
