@charset "UTF-8";

.team-hero-shell {
  margin-top: 32px;
}

.team-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.team-intro-copy {
  flex: 2;
}

.team-intro-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.team-leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
}

.team-leadership-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(180deg, rgba(245,245,247,0.9), #ffffff 40%, #ffffff 100%);
  box-shadow: var(--shadow-soft-elevated);
}

.team-leadership-card p:last-child {
  margin-bottom: 0;
}

.team-leadership-aside {
  padding: var(--space-5);
}

.team-aside-list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.team-aside-cta {
  margin-top: var(--space-1);
}

.team-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.team-section-header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
}

.team-grid-culinary,
.team-grid-lounge,
.team-grid-client,
.team-grid-development {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.team-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface-elevated);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.team-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.team-card-header h3 {
  margin-bottom: 0;
}

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

.team-card-meta {
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-3);
}

.team-card-meta span {
  max-width: 22rem;
}

.team-card-wide {
  grid-column: span 2;
}

.team-foh-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}

.team-foh-image-frame {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background-color: #111;
  overflow: hidden;
}

.team-foh-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-final-cta {
  margin-top: var(--space-8);
  padding: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
}

.team-final-cta-copy h3 {
  margin-bottom: var(--space-2);
}

.team-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .team-intro,
  .team-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-section-header-cta {
    align-items: flex-start;
  }
  .team-leadership-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-foh-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid-culinary,
  .team-grid-lounge,
  .team-grid-client,
  .team-grid-development {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-card-wide {
    grid-column: span 1;
  }
  .team-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .team-leadership-card,
  .team-leadership-aside,
  .team-card,
  .team-final-cta {
    padding: var(--space-5);
  }
  .team-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
